Tool/software: TI-RTOS
I am trying to add another task to project_zero - uart_taskfxn.
I added a new Stack at the size of 512 to the new task.
When I ran project_zero and paused and looked at the RTOS I got this list of tasks running:
I have 2 questions:
1. I don't know where is the ProjectZero_taskFxn. What happened to it?
I still call this function:
void ProjectZero_createTask(void)
{
Task_Params taskParams;
// Configure task
Task_Params_init(&taskParams);
taskParams.stack = przTaskStack;
taskParams.stackSize = PRZ_TASK_STACK_SIZE;
taskParams.priority = PRZ_TASK_PRIORITY;
Task_construct(&przTask, ProjectZero_taskFxn, &taskParams, NULL);
}
it is supposed to be there.
2. What is this ____ASM______ task? Where did it come from?
Just to be clear, My phone can't find the project_zero BLE advertisement.
Tomer.

