Hi,
Hi,
I'd like to print a list of all tasks created in bios. So far, I can only do it by explicitly listing each one. How can I get BIOS to tell me instead?
myTaskList[0] = &TSK_idle;
myTaskList[1] = &testtask_obj;
LOG_printf(&taskname_log, "Name Test %s", myTaskList[0]->name);
LOG_printf(&taskname_log, "Name Test %s", myTaskList[1]->name);
How can i get Bios to tell me:
1) how many tasks there are and
2) Their handles?
Is there a pointer to an array of TSK?
Br,
Matt