diff loadtools/flmain.c @ 415:b2487cfd68fd

fc-loadtool: flash erase-program-boot implementation complete
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 17 Jun 2014 06:31:27 +0000
parents bf49e348576b
children
line wrap: on
line diff
--- a/loadtools/flmain.c	Tue Jun 17 05:46:21 2014 +0000
+++ b/loadtools/flmain.c	Tue Jun 17 06:31:27 2014 +0000
@@ -197,6 +197,7 @@
 extern int flashcmd_blankchk();
 extern int flashcmd_dump2file();
 extern int flashcmd_erase();
+extern int flashcmd_erase_program_boot();
 extern int flashcmd_progbin();
 extern int flashcmd_program_m0();
 extern int flashcmd_program_srec();
@@ -214,6 +215,7 @@
 	{"dump2bin", flashcmd_dump2file},
 	{"dump2srec", flashcmd_dump2file},
 	{"erase", flashcmd_erase},
+	{"erase-program-boot", flashcmd_erase_program_boot},
 	{"help", flashcmd_help},
 	{"info", flashcmd_info},
 	{"program-bin", flashcmd_progbin},