diff 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
line wrap: on
line diff
--- a/loadtools/flash.h	Fri Feb 28 06:07:19 2020 +0000
+++ b/loadtools/flash.h	Sat Feb 29 02:14:30 2020 +0000
@@ -71,3 +71,11 @@
 	struct sector_info	*sectors;
 	int			detect_done;
 };
+
+/* support for flashing discontiguous S-record images */
+
+struct discontig_prog {
+	uint32_t	start;
+	uint32_t	end;
+	uint32_t	crc;
+};