STM32CubeIDE 1.11.0 and CMSIS V2
In a STM32 project using FREERTOS with CMSIS V2, there is not automatic generation of thread creation calls in main function, like
defaultTaskHandle = osThreadNew(StartDefaultTask, NULL, &defaultTask_attributes);
Is it supposed to be the programmer who now has to add these instructions, or can STM32CubeIDE be instructed to generate this code automatically, as in previous versions?