FreeCalypso > hg > freecalypso-sw
comparison miscutil/fc-serterm.c @ 434:3822f3b198d4
fc-serterm: written
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 22 Jun 2014 01:21:10 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
433:2d8ab1b0df8d | 434:3822f3b198d4 |
---|---|
1 /* | |
2 * This hack-utility opens a serial port at the user-specified baud rate | |
3 * and drops into a terminal pass-thru mode, except that any binary bytes | |
4 * received on this port are turned into cat -v form. The intent is for | |
5 * sniffing on and/or talking to targets that emit some ASCII mixed in | |
6 * with binary. | |
7 */ | |
8 | |
9 #include <stdio.h> | |
10 #include <stdlib.h> | |
11 | |
12 int target_fd; | |
13 | |
14 main(argc, argv) | |
15 char **argv; | |
16 { | |
17 if (argc != 3) { | |
18 fprintf(stderr, "usage: %s ttyname baudrate\n", argv[0]); | |
19 exit(1); | |
20 } | |
21 open_target_serial(argv[1], argv[2]); | |
22 tty_passthru(); | |
23 exit(0); | |
24 } |