📄 type.h
字号:
typedef unsigned char byte; // Type definition for 'word'
typedef unsigned char BYTE;
typedef unsigned int word; // Type definition for 'word'
typedef unsigned int WORD;
// **************************************************************************************
// Bit operation union define
// **************************************************************************************
typedef union {
unsigned char Byte;
struct {
unsigned char b0 : 1;
unsigned char b1 : 1;
unsigned char b2 : 1;
unsigned char b3 : 1;
unsigned char b4 : 1;
unsigned char b5 : 1;
unsigned char b6 : 1;
unsigned char b7 : 1;
} Bit;
} BIT;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -