Skip to content
Snippets Groups Projects
Commit 7f19b91c authored by ntfreak's avatar ntfreak
Browse files

- update sectors on stm32x mass erase

git-svn-id: svn://svn.berlios.de/openocd/trunk@681 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 8b916771
Branches
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment