summaryrefslogtreecommitdiff
path: root/src/flash/flash.h
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-10-01 08:31:30 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-10-01 08:31:30 +0000
commit995326b6000773efd454e308d487dec0b9f564b5 (patch)
treeeb60bb8053fdc33aeb6490080a1e4da678dc7014 /src/flash/flash.h
parented36a8d15dfd04e47d23d5f1e09078f105785fb1 (diff)
downloadopenocd+libswd-995326b6000773efd454e308d487dec0b9f564b5.tar.gz
openocd+libswd-995326b6000773efd454e308d487dec0b9f564b5.tar.bz2
openocd+libswd-995326b6000773efd454e308d487dec0b9f564b5.tar.xz
openocd+libswd-995326b6000773efd454e308d487dec0b9f564b5.zip
- flash autoerase <on|off> cmd added, default is off - flash banks are calculated and erased prior to write (flash write_image only)
- corrected array overrun in armv7m.c - corrected breakpoint memory allocation bug - image read now uses fgets, vastly improves reading of large files - improved hex file reading, support for Linear Address Record added git-svn-id: svn://svn.berlios.de/openocd/trunk@208 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/flash/flash.h')
-rw-r--r--src/flash/flash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flash/flash.h b/src/flash/flash.h
index 7ba6ff54..e8f91500 100644
--- a/src/flash/flash.h
+++ b/src/flash/flash.h
@@ -67,7 +67,7 @@ extern int flash_register_commands(struct command_context_s *cmd_ctx);
extern int flash_init(struct command_context_s *cmd_ctx);
extern int flash_erase(target_t *target, u32 addr, u32 length);
-extern int flash_write(target_t *target, image_t *image, u32 *written, char **error, int *failed);
+extern int flash_write(target_t *target, image_t *image, u32 *written, char **error, int *failed, int erase);
extern flash_bank_t *get_flash_bank_by_num(int num);
extern flash_bank_t *get_flash_bank_by_addr(target_t *target, u32 addr);