FreeRTOS PROBLEM
Post edited by ST moderator to be inline with the community rules especially with the code sharing. In next time please use </> button to paste your code. Please read this post: How to insert source code.
in STM32U073MCT6 microcontrollers, I have a problem which is like this;
in main.c I have
while (1)
{
/* USER CODE END WHILE */
HAL_GPIO_WritePin(ioOUT_DISP_A_GPIO_Port, ioOUT_DISP_A_Pin, 1);
/* USER CODE BEGIN 3 */
}
and my led is blinked which is high 3.3 v
however, whenever I enable freertos, led is 0 v
what should I do?
