📄 tvpdefs.h
字号:
#ifndef TVPDEFS_DOT_H_IS_DEFINED
#define TVPDEFS_DOT_H_IS_DEFINED
/*****************************************************************************
* Property of Texas Instruments Incorporated, Copyright 2004
* All rights reserved
******************************************************************************/
/*********************************************************************
*
* Description:
* DEFS.H contains all global defines.
*
*
**********************************************************************/
/*********************************************************************
*
* $Revision: $
*
* $History: TvpDefs.h $
*
*********************************************************************/
typedef enum {TVP_OFF=0, TVP_ON=1} Tvp_On_Off;
typedef enum {TVP_DISABLE=0, TVP_ENABLE=1} Tvp_En_Dis;
typedef enum {TVP_FALSE=0, TVP_TRUE=1} Tvp_True_False;
typedef unsigned char TVP_BOOLEAN;
/*-----------------------------------------------------------------**
** If the user has already defined the unsigned variable types, **
** they may compile with UNSIGNED_TYPES defined to prevent compile **
** errors. **
**-----------------------------------------------------------------*/
#ifndef TVP_UNSIGNED_TYPES
/* Unsigned 32-bit type */
typedef unsigned long ulong;
/* Unsigned 32-bit type : only used for bit-field declaration */
typedef unsigned int uint;
/* Unsigned 16-bit type */
typedef unsigned short ushort;
/* Unsigned 8-bit type */
typedef unsigned char uchar;
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -