Download FreeRTOS
 

Quality RTOS & Embedded Software

KERNEL
WHAT'S NEW
FreeRTOS website now available in Simplified Chinese
New FreeRTOS Long Term Support version now available.
FreeRTOS Extended Maintenance Program (EMP) registration now open.
FreeRTOS-Plus-TCP v3.0.0 released:
Featured FreeRTOS IoT Integrations:

Co-routines
[More about co-routines...]

Scheduling Co-Routines

Co-routines are scheduled by repeated calls to vCoRoutineSchedule(). The best place to call vCoRoutineSchedule() is from the idle task hook. This is the case even if your application only uses co-routines as the idle task will still automatically be created when the scheduler is started. See the later examples.



Mixing Tasks and Co-Routines

Scheduling co-routines from within the idle task allows tasks and co-routines to be easily mixed within the same application. When this is done the co-routines will only execute when there are no tasks of priority higher than the idle task that are able to execute. See the later examples.





Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.