STM32F407VE flash memory
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2014-11-13 7:32 AM
Posted on November 13, 2014 at 16:32
After replacing STM32F407VGT6 for equivalent VET6 I'm puzzled what parts of flash have been left out. This isn't described in the datasheets/manuals. Only the part number identification says 512k, but nowhere what flash banks are unavailable.
Am I missing something? #stm32f407veSolved! Go to Solution.
Labels:
- Labels:
-
STM32F4 Series
This discussion is locked. Please start a new topic to ask your question.
1 ACCEPTED SOLUTION
Accepted Solutions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2014-11-13 7:51 AM
Posted on November 13, 2014 at 16:51
Am I missing something?
The ones above the 512KB threshold (>= 0x08080000) have not been tested. The 405/407 parts typically have the same 1MB dies. There is only a single bank of flash. You have 16K,16K,16K,16K,64K,128K,128K and 128K blocks.printf(''STM32F4 %d KB FLASH, %08X-%08X-%08X UNIQUE
'',
*((unsigned short *)0x1FFF7A22),
*((unsigned long *)0x1FFF7A10),
*((unsigned long *)0x1FFF7A14),
*((unsigned long *)0x1FFF7A18) );
Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Up vote any posts that you find helpful, it shows what's working..
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2014-11-13 7:51 AM
Posted on November 13, 2014 at 16:51
Am I missing something?
The ones above the 512KB threshold (>= 0x08080000) have not been tested. The 405/407 parts typically have the same 1MB dies. There is only a single bank of flash. You have 16K,16K,16K,16K,64K,128K,128K and 128K blocks.printf(''STM32F4 %d KB FLASH, %08X-%08X-%08X UNIQUE
'',
*((unsigned short *)0x1FFF7A22),
*((unsigned long *)0x1FFF7A10),
*((unsigned long *)0x1FFF7A14),
*((unsigned long *)0x1FFF7A18) );
Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Up vote any posts that you find helpful, it shows what's working..
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2014-11-13 10:18 PM
Posted on November 14, 2014 at 07:18
I assumed something like that.
Thanks.