2020-08-05 03:14 AM
Hi,
I'm trying STM32L05x embedded bootloader - Read Memory command via UART.
I can read flash memory (e.g. address start by 0x0800_0000), but when I try to read SRAM ( start by 0x2000_0000) , it always return NACK.
Is it not possible to read SRAM via bootloader?
Solved! Go to Solution.
2020-08-05 04:37 AM
2020-08-05 04:37 AM
JW
2020-08-05 06:52 AM
You could perhaps write code residing higher in RAM, and execute that to perform different modes of access, external memory or whatever.
2020-08-05 07:25 PM
Thanks a lot !