FreeRTOS with SBSFU is not working
I am using the STM32L562E-DK development kit. I have taken reference to NUCLEO-L552ZE-Q and ported it for STM32L562E-DK. Also added External OSPI flash. without FreeRTOS it is working fine.
I have added FreeRTOS in the nonsecure application. For that, I have made the following changes
1) Adopt Middleware folder as provided in "FreeRTOS_ThreadCreation" example of STM32L562E-DK
2) Adopt stm32l5xx_hal_timebase_tim.c
3) Remove SysTick_Handler() definition in stm32l5xx_it.c file.
4) Add void HAL_TIM_PeriodElapsedCallback(TIM_HandleTypeDef *htim) API in main
5) Add osKernelInitialize(); and osKernelStart(); in main().
The same changes are working for the GPIO_IOToggle example. I am able to toggle GPIO in the thread. But in the case of the SBSFU Application is not working. Is there any specific change is required in bootloader or application?
@Frantz LEFRERE , @Jocelyn RICARD Can you please guide me regarding it?
