diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/miscutil/fc-serterm.c	Sun Jun 22 01:21:10 2014 +0000
@@ -0,0 +1,24 @@
+/*
+ * This hack-utility opens a serial port at the user-specified baud rate
+ * and drops into a terminal pass-thru mode, except that any binary bytes
+ * received on this port are turned into cat -v form.  The intent is for
+ * sniffing on and/or talking to targets that emit some ASCII mixed in
+ * with binary.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+int target_fd;
+
+main(argc, argv)
+	char **argv;
+{
+	if (argc != 3) {
+		fprintf(stderr, "usage: %s ttyname baudrate\n", argv[0]);
+		exit(1);
+	}
+	open_target_serial(argv[1], argv[2]);
+	tty_passthru();
+	exit(0);
+}