Hi,
Using sys bios6 from 6616 simulator..
Trying to create socket from a user defined task and getting error "
ti.sysbios.knl.Task: line 895: assertion failure: A_badPriority: An invalid task priority was used"
Task created like below:
Task_Params taskParams;
Task_Params_init(&taskParams);
taskParams.stackSize = 1024;
taskParams.priority = 15;
taskParams.instance->name =
"my task";
taskParams.arg0 = 2;
Error_Block eb;
Error_init(&eb);
task = Task_create(taskFxn, &taskParams, &eb);
Socket function called and getting error from below line.
if(0 > (fd_ = ::socket(sockDomain, sockType, protocol)))
Please let me know why this is happening...Also this is not done in idle task as NDK may try to increase the priotiy. So why this problem is happening in a user defined task?
regards
Soumya