?? config.h
字號(hào):
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
typedef unsigned char uint8; //無符號(hào)8位整型變量
typedef signed char int8; //有符號(hào)8位整型變量
typedef unsigned short uint16; // 無符號(hào)16位整型變量
typedef signed short int16; // 有符號(hào)16位整型變量
typedef unsigned int uint32; // 無符號(hào)32位整型變量
typedef signed int int32; //有符號(hào)32位整型變量
typedef float fp32; // 單精度浮點(diǎn)數(shù)(32位長(zhǎng)度)
typedef double fp64; // 雙精度浮點(diǎn)數(shù)(64位長(zhǎng)度)
/********************************/
/* uC/OS-II的特殊代碼 */
/********************************/
#define SVC32MODE 0x13 /* 管理模式,ARM代碼 */
// /* 只能是0x10,0x30,0x1f,0x3f之一 */
#include "includes.h"
#include "2410addr.h"
/********************************/
/* 應(yīng)用程序配置 */
/********************************/
//以下根據(jù)需要改動(dòng)
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#include <setjmp.h>
#include <string.h>
#include "..\rs485\uart2.h"
#include "..\queue\queue.h"
//#include "..\Arm_Pc\pc.h"
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -