?? common.h
字號:
/*============================================================================
Project QT701 Demo code
File common.h
Function Utilities
Requires
Originated D Spokes
(c) Go Concepts Ltd 2006
============================================================================*/
/* Multiple inclusion protection */
#ifndef _COMMON_H
#define _COMMON_H
#define SYSCLK_FREQUENCY 24500000
/* PLATFORM INDEPENDENT TYPE DEFINITIONS */
typedef unsigned char UINT8;
typedef signed char INT8;
typedef unsigned int UINT16;
typedef signed int INT16;
typedef unsigned long UINT32;
typedef signed long INT32;
typedef float FLOAT32;
typedef enum {
false = 0,
true = 1
} BOOL;
#ifndef NULL
#define NULL 0
#endif
#endif /* _COMMON_H */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -