📄 ts_kernelcalls.h
字号:
/*****************************************************************************
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -