Jumping to main program from ISR
Hi,I try to jump from Bootloader to my main program using this function:void jumpToMainProgram(){ uint32_t topOfStack = (*(uint32_t *)0x8008200ul); HAL_RCC_DeInit(); // deinit clocks // reset all periphals __HAL_RCC_AHB_FORCE_RESET(); __HA...