I am trying to jump from my application into the bootloader. It works as long as I pull the pin BOOT0 high, which in my case means setting a jumper. Is there a way to get into the bootloader while BOOT0 is pulled low? My device is STM32L412.
Device: STM32L412Code: typedef void (*pFunction)(void); volatile uint32_t addr = 0x1FFF0000; uint32_t JumpAddress = *(__IO uint32_t*) (addr + 4); pFunction Jump_To_Boot = (pFunction) JumpAddress; #if defined(USE_HAL_DRIVER) HAL_RCC_DeInit(); #en...