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