2021-02-16 04:29 AM
I have 2 seperate projects, the bootloader and the end application.
What i want to do is program the bootloader code when i program the application (Run as).
I dont need debug capabilities for the bootloader, i just want flash locations 0x08000000 – 0x08004FFF programmed with a fixed binary file (BL) , and locations 0x08005000 – 0x0800F7FF with my end application .
Can i do this from within STM32 cube IDE without using external tools to merge the binary of hex files? Or without creating one big project including the bootloader?
i use STM32G431C8T
STM cube IDE Version: 1.5.1
Thank you
Steve
Solved! Go to Solution.
2021-02-16 04:38 AM
See https://www.st.com/resource/en/user_manual/dm00629856-stm32cubeide-user-guide-stmicroelectronics.pdf
Debug configuration load list is what you're looking for:
2021-02-16 04:38 AM
See https://www.st.com/resource/en/user_manual/dm00629856-stm32cubeide-user-guide-stmicroelectronics.pdf
Debug configuration load list is what you're looking for:
2021-02-16 07:19 AM
excactly what i searched for !
Thank you