FreeCalypso > hg > freecalypso-tools
view miscutil/fc-serterm.c @ 751:5dd748850f2b
fc-shell help: batt command: better documentation
The semantic meaning of the two bytes carried in the MMI_BATTERY_IND
primitive depends on the firmware version. Update the documentation
to describe what these two bytes mean in current FC Tourmaline firmware.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 05 Nov 2020 19:30:14 +0000 |
parents | fb577c31e960 |
children |
line wrap: on
line source
/* * 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> main(argc, argv) char **argv; { if (argc != 3) { fprintf(stderr, "usage: %s ttyname baudrate\n", argv[0]); exit(1); } open_serial_port(argv[1]); set_fixed_baudrate(argv[2]); tty_passthru(); exit(0); }