ts_kernelcalls.h

来自「freescale的基于802.15.4的无线通讯例程」· C头文件 代码 · 共 43 行

H
43
字号
/*****************************************************************************
* This file contains Task_Scheduler header information
*
*             
* (c) Copyright 2006, Freescale, Inc. All rights reserved.
*
* Freescale Semiconductor Confidential Proprietary
*
* No part of this document must be reproduced in any form - including copied,
* transcribed, printed or by any electronic means - without specific written
* permission from Freescale Semiconductor Denmark A/S.
*****************************************************************************/

#ifndef _KERNEL_CALLS_H_
#define _KERNEL_CALLS_H_

#include "EmbeddedTypes.h"

/*****************************************************************************
******************************************************************************
* Private macros
******************************************************************************
*****************************************************************************/

/*  Event Control Macros */
#define SetTaskEvent( taskNumber,value )  \
                         (  aTaskArray[ taskNumber ].taskEvent |= value )
#define ResetTaskEvent( taskNumber,value )  \
                              ( aTaskArray[ taskNumber ].taskEvent = 0  )

/*****************************************************************************
******************************************************************************
* Private type definitions
******************************************************************************
*****************************************************************************/

/*****************************************************************************
******************************************************************************
* Public memory declarations
******************************************************************************
*****************************************************************************/
#endif 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?