33#error "include FreeRTOS.h must appear in source files before include croutine.h"
45typedef void *CoRoutineHandle_t;
48typedef void (*crCOROUTINE_CODE)(CoRoutineHandle_t, UBaseType_t);
51 crCOROUTINE_CODE pxCoRoutineFunction;
54 UBaseType_t uxPriority;
132BaseType_t xCoRoutineCreate(crCOROUTINE_CODE pxCoRoutineCode, UBaseType_t uxPriority, UBaseType_t uxIndex);
173void vCoRoutineSchedule(
void);
204#define crSTART(pxCRCB) \
205 switch (((CRCB_t *)(pxCRCB))->uxState) { \
243#define crSET_STATE0(xHandle) \
244 ((CRCB_t *)(xHandle))->uxState = (__LINE__ * 2); \
247#define crSET_STATE1(xHandle) \
248 ((CRCB_t *)(xHandle))->uxState = ((__LINE__ * 2) + 1); \
250 case ((__LINE__ * 2) + 1):
298#define crDELAY(xHandle, xTicksToDelay) \
299 if ((xTicksToDelay) > 0) { \
300 vCoRoutineAddToDelayedList((xTicksToDelay), NULL); \
302 crSET_STATE0((xHandle));
387#define crQUEUE_SEND(xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult) \
389 *(pxResult) = xQueueCRSend((pxQueue), (pvItemToQueue), (xTicksToWait)); \
390 if (*(pxResult) == errQUEUE_BLOCKED) { \
391 crSET_STATE0((xHandle)); \
392 *pxResult = xQueueCRSend((pxQueue), (pvItemToQueue), 0); \
394 if (*pxResult == errQUEUE_YIELD) { \
395 crSET_STATE1((xHandle)); \
396 *pxResult = pdPASS; \
477#define crQUEUE_RECEIVE(xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult) \
479 *(pxResult) = xQueueCRReceive((pxQueue), (pvBuffer), (xTicksToWait)); \
480 if (*(pxResult) == errQUEUE_BLOCKED) { \
481 crSET_STATE0((xHandle)); \
482 *(pxResult) = xQueueCRReceive((pxQueue), (pvBuffer), 0); \
484 if (*(pxResult) == errQUEUE_YIELD) { \
485 crSET_STATE1((xHandle)); \
486 *(pxResult) = pdPASS; \
584#define crQUEUE_SEND_FROM_ISR(pxQueue, pvItemToQueue, xCoRoutinePreviouslyWoken) \
585 xQueueCRSendFromISR((pxQueue), (pvItemToQueue), (xCoRoutinePreviouslyWoken))
697#define crQUEUE_RECEIVE_FROM_ISR(pxQueue, pvBuffer, pxCoRoutineWoken) \
698 xQueueCRReceiveFromISR((pxQueue), (pvBuffer), (pxCoRoutineWoken))
709void vCoRoutineAddToDelayedList(TickType_t xTicksToDelay,
List_t *pxEventList);
718BaseType_t xCoRoutineRemoveFromEventList(
const List_t *pxEventList);