comparison loadtools/flash.h @ 628:9c5b0629e346

fc-loadtool SREC programming revamp implemented, compiles
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 29 Feb 2020 02:14:30 +0000
parents 0dd2c87c1b63
children d42534e5ac02
comparison
equal deleted inserted replaced
627:d04502de49ed 628:9c5b0629e346
69 struct flash_geom *geom; 69 struct flash_geom *geom;
70 struct flash_cmdset *ops; 70 struct flash_cmdset *ops;
71 struct sector_info *sectors; 71 struct sector_info *sectors;
72 int detect_done; 72 int detect_done;
73 }; 73 };
74
75 /* support for flashing discontiguous S-record images */
76
77 struct discontig_prog {
78 uint32_t start;
79 uint32_t end;
80 uint32_t crc;
81 };