bianchi77
Advanced Member level 4
- Joined
- Jun 11, 2009
- Messages
- 1,313
- Helped
- 21
- Reputation
- 44
- Reaction score
- 20
- Trophy points
- 1,318
- Location
- California
- Activity points
- 9,442
Friends,
I'm doing uCOSII and put task like this :
Why is the BlinkTask not being executed ?
Is it because of this one ?
Thanks
I'm doing uCOSII and put task like this :
Code:
static void App_TaskCreate (void)
{
#if (OS_VIEW_MODULE == DEF_ENABLED)
App_OSViewTaskCreate();
#endif
App_BlinkTaskCreate();
App_LCDTaskCreate();
}
Why is the BlinkTask not being executed ?
Is it because of this one ?
Code:
#define APP_TASK_BLINK_PRIO (OS_LOWEST_PRIO - 4)
#define APP_TASK_LCD_PRIO (OS_LOWEST_PRIO - 7)
Thanks