f2812_datatype.h

来自「TI的2812控制交通灯」· C头文件 代码 · 共 27 行

H
27
字号

#ifndef __F1821_DATATYPE_H__
#define __F1821_DATATYPE_H__

#ifdef __cplusplus
extern "C" {
#endif

typedef unsigned char	Uint8;
typedef int             int16;
typedef long            int32;
typedef unsigned int    Uint16;
typedef unsigned long   Uint32;
typedef float           float32;
typedef long double     float64;

typedef enum {FALSE = 0, TRUE = !FALSE} bool;

typedef interrupt void(*PINT)(void);


#ifdef __cplusplus
}
#endif /* extern "C" */

#endif //__F1821_DATATYPE_H__

⌨️ 快捷键说明

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