i have add about 13 tasks to rtos; when i add :
tsk1 = Task_create(task1, &taskParams, NULL);
void task1(UArg arg0, UArg arg1)
{
Task_sleep(100);
}
it cannot run, error:
{module#42}: line 307: error {id:0x114c0000, args:[0x2002c5cc, 0x800]}
xdc.runtime.Error.raise: terminating execution
when i delete the simple task ,its ok;
why why