Debugging FREERTOS application on Nucleo board - step by step to watch the expressions?
I am trying to do step by step debugging of my FreeRTOS application in STM32CUBEIDE, and I have a problem because every time I try to make a step in debug mode the state of the execution pointer in GUI goes into the TIM8_TRG_COM_TIM14_IRQHandler. For FreeRTOS I am using TIM14 as a Systick (initialized in CubeMX). How can I solve this debugging issue so that I can step by step debug my running thread?
Just to provide more information, I have two tasks running both with Normal priority and I can confirm by watching Live expressions and two counters, that both tasks are running in Round Robin type of scheduling. However I would like to step by step debug my application and i am not able because whenever I click next step the poitner goes into the TIM8_TRG_COM_TIM14_IRQHandler.
