Hello,
A customer has a question regarding some 64+ DSP/BIOS code snippet that someone else wrote once upon a time.
In the below snippet, OBJ_table[] is used.
Where is the OBJ module described? I cannot find it anywhere in the 6000 DSP/BIOS API doc.
Can someone shed some light on this module & how it is used?
queue = &OBJ_table[OBJ_TSK];
elem=QUE_head(queue);
while (elem != queue)
{
dummy_task = &((Task_List_T*)elem)->my_task_obj;
{
TSK_stat(dummy_task, &stat);
if (*((Uint32*)stat.attrs.stack) != STACK_STAMP)
{
Force_Watch_Dog_Reset();
}
}
elem = QUE_next(elem);
}
Regards,
Mark