2023-03-10 12:24 PM
I currently program a STM32F303 with the app STMFlashLoader Demo, using a USB-RS232 device. I want to replace that app with CubeProgrammer, but the app is sending an error. I already checked my FW, but it is OK.
So, I want to know if you can help me to fix this error without affecting the programming of the device.
Solved! Go to Solution.
2023-03-10 01:02 PM
0x20000000 is RAM
Build your project for 0x08000000 that's where the FLASH is situated
The object file shouldn't be describing RAM, it's the responsibility of the startup code to initialize/copy initial content in RAM
2023-03-10 01:02 PM
0x20000000 is RAM
Build your project for 0x08000000 that's where the FLASH is situated
The object file shouldn't be describing RAM, it's the responsibility of the startup code to initialize/copy initial content in RAM