stm32duino/STM32FreeRTOS

xTaskCreateStatic was not declared

Nanmei opened this issue · 2 comments

I use xTaskCreateStatic create task ,the Compiler display “xTaskCreateStatic was not declared“,but xTaskCreate was correct.

C542609B-F370-4BAC-9EC3-813B1E2A0D7F

You have to set the configSUPPORT_STATIC_ALLOCATION to 1.
https://www.freertos.org/xTaskCreateStatic.html

Anyway we do not support nor test all the config. You will be on your own for this.

Thanks,