?? main.h
字號:
/****************************************Copyright (c) ****************************************
** Guangzhou ZHIYUAN electronics Co.,LTD.
**
** http://www.embedtools.com
**
**―――File Info――――――――――――――――――――――――――――――――――――――
** File name :main.h
** Last modified Date :
** Last Version :V1.0
** Descriptions :用戶程序主函數頭文件
**
**―――――――――――――――――――――――――――――――――――――――――――――
** Created by :
** Created date :2007-4-17
** Version :
** Descriptions :
**
**―――――――――――――――――――――――――――――――――――――――――――――
** Modified by :
** Modified date :
** Version :
** Descriptions :
**
*******************************************************************************************/
#ifndef __MAIN_H
#define __MAIN_H
#ifdef __cplusplus
extern "C" {
#endif
//這一段無需改動
#include "config.h"
/**********************************************************************************
** 應用程序配置
** Application Program Configurations
**********************************************************************************/
//以下根據需要改動
#define BlockNum 5 //10
#define BlockSize 0x80 //0x80
#define BlockSize_Big (BlockSize*4)
extern INT8U err;
//extern OS_MEM * IntBuffer; //定義內存控制塊指針
//extern INT8U IntPart[BlockNum][BlockSize]; //劃分分區及內存塊
extern OS_MEM * IntBuffer_Big; //定義內存控制塊指針
extern INT8U IntPart_Big[BlockNum][BlockSize_Big]; //劃分分區及內存塊
extern OS_MEM_DATA MemInfo;
//////////////////////////////////////////////////////////
#ifdef __cplusplus
}
#endif
#endif
/*******************************************************************************************
End Of File
*******************************************************************************************/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -