?? head.h
字號(hào):
#include <reg52.h>
#include <intrins.h>
#include <absacc.h>
#include <string.h>
#define int8 char
#define int16 int
#define int32 long
#define uint8 unsigned char
#define uint16 unsigned int
#define uint32 unsigned long
//自己定義數(shù)據(jù)結(jié)構(gòu), 用于時(shí)間處理
struct out
{
uint8 flag;
uint16 count;
};
#define tOut struct out
#define ENTER_CRITICAL() EA=0; eaCount++;
#define EXIT_CRITICAL() if(0==--eaCount)EA=1;
#define DELAY_START_value 1 /* 根據(jù)單片機(jī)的時(shí)鐘選擇延時(shí)初值 */
#define DBG_SETUP (1<<0)
#define DBG_MSK_1 (1<<1)
#define DBG_MSK_2 (1<<2)
#define DBG_MSK_3 (1<<3)
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -