Question
How can I add a new task on FreeRTOS on STM32 ?
Posted on January 06, 2014 at 06:32
Guys,
How can I add a new task on FreeRTOS on STM32 ? I have created : [CODE] #define LCD_TASK_STACK_SIZE ( configMINIMAL_STACK_SIZE ) #define LCD_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 ) #define LCD_RTC_TASK_STACK_SIZE ( configMINIMAL_STACK_SIZE ) #define LCD_RTC_TASK_PRIORITY ( tskIDLE_PRIORITY +0 ) xTaskCreate( vLCDTask , ( signed char * ) NULL , LCD_TASK_STACK_SIZE , NULL , LCD_TASK_PRIORITY , NULL ); xTaskCreate( vRTC_LCDTask , ( signed char * ) NULL , LCD_RTC_TASK_STACK_SIZE , NULL , LCD_RTC_TASK_PRIORITY , NULL ); [/CODE]but it's stopping on vRTC_LCDTask....any ideas, is it because of the priority ? Thanks