Skip to content
Snippets Groups Projects
Commit 6945fb26 authored by ntfreak's avatar ntfreak
Browse files

- corrected error with stm32 page calculation

git-svn-id: svn://svn.berlios.de/openocd/trunk@686 b42882b7-edfa-0310-969c-e2dbd0fdcd60
parent 3a11ebf8
No related branches found
No related tags found
No related merge requests found
......@@ -664,7 +664,8 @@ int stm32x_probe(struct flash_bank_s *bank)
LOG_INFO( "flash size = %dkbytes", num_pages );
/* calculate numbers of pages */
num_pages /= (page_size - 1024);
if (page_size - 1024)
num_pages /= (page_size - 1024);
bank->base = 0x08000000;
bank->size = (num_pages * page_size);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment