Hi,
I have a question about SYSBIOS Task Thread.
The question is about TSK_delete.
Is it allowed to delete TSK by oneself at the end of the thread?
What I meant is following example:
////////////////////////////////////////
void main()
{
TSK_create(&TSK_thread);
BIOS_start();
}
void TSK_thread()
{
process();
/*end of TSK*/
TSK_delete(TSK_thread); <---- Is this allowed?
}
/////////////////////////////////////////
best regards,
g.f.