- update sectors on stm32x mass erase

git-svn-id: svn://svn.berlios.de/openocd/trunk@681 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
ntfreak 2008-05-24 14:19:42 +00:00
parent 8b91677133
commit 7f19b91c80
1 changed files with 7 additions and 0 deletions

View File

@ -935,6 +935,7 @@ int stm32x_handle_mass_erase_command(struct command_context_s *cmd_ctx, char *cm
stm32x_flash_bank_t *stm32x_info = NULL;
flash_bank_t *bank;
u32 status;
int i;
if (argc < 1)
{
@ -982,6 +983,12 @@ int stm32x_handle_mass_erase_command(struct command_context_s *cmd_ctx, char *cm
return ERROR_OK;
}
/* set all sectors as erased */
for (i = 0; i < bank->num_sectors; i++)
{
bank->sectors[i].is_erased = 1;
}
command_print(cmd_ctx, "stm32x mass erase complete");
return ERROR_OK;