STM32FreeRTOS
STM32FreeRTOS copied to clipboard
Real Time Operating System implemented for STM32
The FreeRTOS web site says that one must implement function vApplicationStackOverflowHook when enabling configCHECK_FOR_STACK_OVERFLOW . This is not the case for STM32FreeRTOS as it is defined in STM32FreeRTOS.c and there...
My environment: Arduino-IDE(Ver1.8.5) + stm32duino + nucleo F103RB Source code: ```C #include #include SemaphoreHandle_t xSemaphore; void _printf(const char *format, ...) { xSemaphoreTake(xSemaphore, portMAX_DELAY); va_list va; va_start(va, format); // TickType_t _nowTick...
## Issue: `vTaskDelay()` has no effect on STM32L431RC (FreeRTOS 9.0.4 and 10.3.3) **Board:** STM32L431RC **FreeRTOS versions tested:** 9.0.4 and 10.3.3 **HAL / Clock config:** Using HSE as SYSCLK, no PLL...