FreeCalypso > hg > fc-usbser-tools
view cp2102/file_rw_test.c @ 95:a378bf95c26c
cp2102-read-eeprom: write the Intel HEX image into a file
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Thu, 28 Sep 2023 02:19:39 +0000 |
| parents | c0084bf153e5 |
| children |
line wrap: on
line source
/* * This little program is a unit test for our Intel HEX reading function. */ #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]); intel_hex_out(eeprom, stdout); exit(0); }
