?? public.h
字號:
/*==================PUBLIC.H====================*/
/* 時間: 2004-06-09...2004-06-10 */
/* 說明: 定義公共類型頭文件,無對應源文件 */
/*==============================================*/
//類型變量列表
#ifndef _PUBLIC_H_
#define _PUBLIC_H_
#ifndef _U_CHAR_
#define _U_CHAR_
#define uchar unsigned char
#endif
#ifndef _U_INT_
#define _U_INT_
#define uint unsigned int
#endif
#ifndef _U_LONG_
#define _U_LONG_
#define ulong unsigned long
#endif
#ifndef _TRUE_
#define _TRUE_
#define true 1
#define false (!true)
#endif
#ifndef _SYS_FREQ_
#define _SYS_FREQ_
#define SYS_FREQ_MHZ (float)11.0592 //用戶必須按照實際的晶振速度進行定義
#endif
#endif
// End Of PUBLIC.H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -