Hi,
I am running couple of tasks on Piccolo 028. My two tasks run fine but they do not use TSK_sleep() - they block on semaphores. The third task just needs to sleep for couple of ticks, toggle pin and repeat this indefinitely:
Void safety_task(Arg id_arg) { while (1) { TSK_sleep(10); TOGGLE_RED; } } It looks like TSK_sleep() never returns? My PRD setting is
bios.TSK.DRIVETSKTICK = "PRD"; all tasks are created statically.... Thanks for your thoughts