comparison 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
comparison
equal deleted inserted replaced
414:a2df77833c21 415:b2487cfd68fd
195 } 195 }
196 196
197 extern int flashcmd_blankchk(); 197 extern int flashcmd_blankchk();
198 extern int flashcmd_dump2file(); 198 extern int flashcmd_dump2file();
199 extern int flashcmd_erase(); 199 extern int flashcmd_erase();
200 extern int flashcmd_erase_program_boot();
200 extern int flashcmd_progbin(); 201 extern int flashcmd_progbin();
201 extern int flashcmd_program_m0(); 202 extern int flashcmd_program_m0();
202 extern int flashcmd_program_srec(); 203 extern int flashcmd_program_srec();
203 extern int flashcmd_quickprog(); 204 extern int flashcmd_quickprog();
204 extern int flashcmd_reset(); 205 extern int flashcmd_reset();
212 } cmdtab[] = { 213 } cmdtab[] = {
213 {"blankchk", flashcmd_blankchk}, 214 {"blankchk", flashcmd_blankchk},
214 {"dump2bin", flashcmd_dump2file}, 215 {"dump2bin", flashcmd_dump2file},
215 {"dump2srec", flashcmd_dump2file}, 216 {"dump2srec", flashcmd_dump2file},
216 {"erase", flashcmd_erase}, 217 {"erase", flashcmd_erase},
218 {"erase-program-boot", flashcmd_erase_program_boot},
217 {"help", flashcmd_help}, 219 {"help", flashcmd_help},
218 {"info", flashcmd_info}, 220 {"info", flashcmd_info},
219 {"program-bin", flashcmd_progbin}, 221 {"program-bin", flashcmd_progbin},
220 {"program-m0", flashcmd_program_m0}, 222 {"program-m0", flashcmd_program_m0},
221 {"program-srec", flashcmd_program_srec}, 223 {"program-srec", flashcmd_program_srec},