?? def.h
字號:
#ifndef __DEF_H__
#define __DEF_H__
#define UINT32T unsigned int
#define INT32T int
#define UINT16T unsigned short
#define INT16T short int
#define UINT8T unsigned char
#define INT8T char
#define TRUE 1
#define FALSE 0
#define OK 1
#define FAIL 0
#define FileEnd 1
#define NotEnd 0
#define False 0
#define True !False
/* Sets the result on bPort */
#define BIT_SET(bPort,bBitMask) (bPort |= bBitMask)
#define BIT_CLR(bPort,bBitMask) (bPort &= ~bBitMask)
/* Returns the result */
#define GET_BIT_SET(bPort,bBitMask) (bPort | bBitMask)
#define GET_BIT_CLR(bPort,bBitMask) (bPort & ~bBitMask)
/* Returns 0 if the condition is False & a non-zero value if it is True */
#define TEST_BIT_SET(bPort,bBitMask) (bPort & bBitMask)
#define TEST_BIT_CLR(bPort,bBitMask) ((~bPort) & bBitMask)
#endif /*__DEF_H__*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -