tistdtypes.h
来自「davinci的NANDFLASH烧写程序」· C头文件 代码 · 共 51 行
H
51 行
/* --------------------------------------------------------------------------
FILE : tistdtypes.h
PURPOSE : TI standard types header file
PROJECT : DaVinci CCS NAND Flashing Utility
AUTHOR : Daniel Allred
DATE : 04-Jun-2007
HISTORY
v1.00 - DJA - 04-Jun-2007
Completion (with support for DM6441 and DM6441_LV)
----------------------------------------------------------------------------- */
#ifndef _TISTDTYPES_H_
#define _TISTDTYPES_H_
#ifndef TRUE
typedef int Bool;
#define TRUE ((Bool) 1)
#define FALSE ((Bool) 0)
#endif
#ifndef NULL
#define NULL 0
#endif
/* unsigned quantities */
typedef unsigned int Uint32;
typedef unsigned short Uint16;
typedef unsigned char Uint8;
/* signed quantities */
typedef int Int32;
typedef short Int16;
typedef char Int8;
/* volatile unsigned quantities */
typedef volatile unsigned int VUint32;
typedef volatile unsigned short VUint16;
typedef volatile unsigned char VUint8;
/* volatile signed quantities */
typedef volatile int VInt32;
typedef volatile short VInt16;
typedef volatile char VInt8;
#endif /* _TISTDTYPES_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?