Looking to use STM32 BootLoader in my STM32G07xxx and jump from my application.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2021-01-18 9:07 PM
Using previous post "STM32H7-bootloader-jump-from-application" and change bootloader memory to 0x1FFF6800. Currently running STM32CubeIDE I see it execute SysMemBootJump but with debugger going immediately (second goes pass) return to HAL_Init(); I was expect it to stay in bootloader waiting for STM32Flash commands.
Labels:
- Labels:
-
Bootloader
-
STM32G0 Series
This discussion is locked. Please start a new topic to ask your question.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
2021-01-20 1:57 PM
My bad,
Bootloader is in System Memory 0x1FFF0000, not Securable Memory Area 0x1FFF6800.
In addition HAL give nice way switching to System Memory:
__HAL_SYSCFG_REMAPMEMORY_SYSTEMFLASH();
Colin.
