Can the system BootLoader (USB DFU) of the STM32 update the external FLASH memory mapped through QSPI?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-11-01 6:46 PM
I learned that the BootLoader of the STM32 system can update the firmware in the internal FLASH through USB UART CAN, etc. Can the same operation be performed if the external FLASH mapped through QSPI is used?
Solved! Go to Solution.
- Labels:
-
Bootloader
-
QSPI
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-11-01 8:36 PM
A similar question was asked last week.
No. The System loader has no idea how to program the external memory, and memory-mapped only works for reading.
You'd need to build your own DFU Device implementation, supporting the memory you have chosen.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-11-01 8:36 PM
A similar question was asked last week.
No. The System loader has no idea how to program the external memory, and memory-mapped only works for reading.
You'd need to build your own DFU Device implementation, supporting the memory you have chosen.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-11-01 8:51 PM
Okay, I see. Thank you very much for your answer.
