Can I use freertos only croutine?

nobody wrote on Monday, January 15, 2007:

How can I port it to a new cpu?

rtel wrote on Monday, January 15, 2007:

The easiest way to run co-routines is in the idle task.  If the scheduler is running then a full port is required to swap the idle task in and out.  However, if you know that only co-routines are ever going to be created and never any other tasks then you could ignore the context saving and restoring and just write a normal interrupt for the tick.  This should in theory make for a very simple port and system but I have never tried it :wink:

Regards.

nobody wrote on Monday, January 15, 2007:

Thank you Richard.