comparison loadtools/flash.h @ 652:d42534e5ac02

loadtools: discontig.h split out of flash.h
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 02 Mar 2020 03:49:31 +0000
parents 9c5b0629e346
children 77a0001d8849
comparison
equal deleted inserted replaced
651:6bb41b4d39ed 652:d42534e5ac02
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 };