2021-11-01 06: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.
2021-11-01 08: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.
2021-11-01 08: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.
2021-11-01 08:51 PM
Okay, I see. Thank you very much for your answer.