代码搜索结果
找到约 4,874 项符合
RTOS 的代码
——rtos的必备特性.htm
——RTOS的必备特性
ex_rtos_demo_5_yield.c
/////////////////////////////////////////////////////////////////////////
//// ex_rtos_demo_5_yield.C ////
////
mailbox.c
#define RTOS_MAILBOX_C
#include "includes.h"
#define RTOS_MailboxIsValid(mailbox) \
((mailbox!=(RTOS_Mailbox)0)\
&&(((OS_EVENT*)mailbox)->OSEventType==OS_EVENT_TYPE_MBOX))
sem.c
#include "rtos.h"
#define RTOS_SemaphoreIsValid(semaphore) \
(semaphore &&(((OS_EVENT*)semaphore)->OSEventType==OS_EVENT_TYPE_SEM))
/*
*************************************************
ex_rtos_demo_7_await.c
/////////////////////////////////////////////////////////////////////////
//// ex_rtos_demo_7_await.C ////
////