CubeProgrammer downloading error STM32F303
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎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.
- Labels:
-
STM32CubeProgrammer
-
STM32F3 Series
-
USB
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-03-10 1: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
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
‎2023-03-10 1: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
Up vote any posts that you find helpful, it shows what's working..
