My bootloader starts from 0x08000000 and my application starts from 0x08004000. After i flash the application through UART I jump to my application using the code below. HAL_UART_DeInit(uart_handle); HAL_RCC_DeInit(); HAL_DeInit(); SysTick->CTRL = 0;...
Thanks a lot.If i write a simple application it is working perfectly after switching. But my main application is freertos based and it unexpectedly resets back to my bootloader. Am i doing my application switching correctly or do i need to do somethi...
Thanks.What about a soft reset from Watch dog in my application. And also is there a way to ensure that after reset, the controller straightaway goes to my application.