FreeCalypso > hg > fc-usbser-tools
diff cp2102/decode_baudtab_main.c @ 58:4890ded06a8b
cp2102-decode-baudtab program written, compiles
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 11 Sep 2023 20:33:26 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cp2102/decode_baudtab_main.c Mon Sep 11 20:33:26 2023 +0000 @@ -0,0 +1,23 @@ +/* + * This program reads a CP2102 EEPROM image from an Intel HEX file + * and decodes the baud rate table contained therein. + */ + +#include <sys/types.h> +#include <stdio.h> +#include <stdlib.h> +#include "cp210x_defs.h" + +u_char eeprom[SIZE_EEPROM]; + +main(argc, argv) + char **argv; +{ + if (argc != 2) { + fprintf(stderr, "usage: %s ihex-file\n", argv[0]); + exit(1); + } + read_intel_hex(argv[1]); + decode_baud_table(stdout); + exit(0); +}