cancel
Showing results for 
Search instead for 
Did you mean: 

CubeProgrammer downloading error STM32F303

NVale.1
Associate

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.0693W00000aIhb0QAC.png

1 ACCEPTED SOLUTION

Accepted Solutions

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

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..

View solution in original post

1 REPLY 1

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

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..