i remade an empty project with Freertos STN32F107 for myself, but now there was a problem in the form of "Not enough RAM 'ucHeap'". The trick is that if you set the value configTOTAL_HEAP_SIZE ((size_t) (17 * 1024))
the error "Not enough RAM 'ucHeap'" appears, and if you set configTOTAL_HEAP_SIZE ((size_t) (1 * 1024))
the program will compile, but my task will not work.
I am using MK STM32F103C4, Freertos version 9.0.0
Please tell me what I'm doing wrong.