Other Parts Discussed in Thread: SYSBIOS
Tool/software: Code Composer Studio
Hi
I have created some tasks,and set the params like this:
Task_Params_init(&taskParams);
taskParams.instance->name = "Task_DealData";
taskParams.priority = 8;
taskParams.stackSize = 8192;
task = Task_create(Task_DealData, NULL, &eb);
when I use ROV to see the task,I found the priority is 1 and stackSize is 4096,
these are the default setting.
my PDK version is pdk_am335x_1_0_13,sysbios version is bios_6_73_01_01,xdc tool version is xdctools_3_55_00_11_core.
this is my cfg file ,please help me to check.