summaryrefslogtreecommitdiff
path: root/src/flash/flash.h
diff options
context:
space:
mode:
authorntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-12-20 16:19:10 +0000
committerntfreak <ntfreak@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2007-12-20 16:19:10 +0000
commit55f2fe830a541a297d6bf3906c6a28df81acbf05 (patch)
treec95e8986ea95270728b2d193fada78a8a6abc30f /src/flash/flash.h
parent79f25814fe1b84e47d10d0063850062b1e65a9ed (diff)
downloadopenocd+libswd-55f2fe830a541a297d6bf3906c6a28df81acbf05.tar.gz
openocd+libswd-55f2fe830a541a297d6bf3906c6a28df81acbf05.tar.bz2
openocd+libswd-55f2fe830a541a297d6bf3906c6a28df81acbf05.tar.xz
openocd+libswd-55f2fe830a541a297d6bf3906c6a28df81acbf05.zip
- removed flash write_image - binary compare function has been moved to verify_image command
- minor code reformat and cleanup - updated docs to include new commands git-svn-id: svn://svn.berlios.de/openocd/trunk@243 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/flash/flash.h')
-rw-r--r--src/flash/flash.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/flash/flash.h b/src/flash/flash.h
index b90b64eb..e8f91500 100644
--- a/src/flash/flash.h
+++ b/src/flash/flash.h
@@ -63,18 +63,11 @@ typedef struct flash_bank_s
struct flash_bank_s *next;
} flash_bank_t;
-enum flash_image_op
-{
- flash_image_op_write = 0,
- flash_image_op_verify,
- flash_image_op_erase
-};
-
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_image_operation(target_t *target, image_t *image, u32 *written, char **error_str, int *failed, enum flash_image_op op);
+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);