STM32FreeRTOS icon indicating copy to clipboard operation
STM32FreeRTOS copied to clipboard

Real Time Operating System implemented for STM32

Results 3 STM32FreeRTOS issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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...

enhancement

## 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...