?? target.h
字號:
/*******************************************************************************************************
**target.h
********************************************************************************************************/
#ifndef __TARGET_H
#define __TARGET_H
/********************************************************************************************************
** "以下宏和常量定義"
** consts and marcos define here
********************************************************************************************************/
/********************************************************************************************************
** "以下結構體、共用體和類"
** structs,unions and classes define here
********************************************************************************************************/
#ifndef IN_TARGET
#ifdef __cplusplus
extern "C" {
#endif
/********************************************************************************************************
** "以下為全局變量聲明"
** declare global variables here
********************************************************************************************************/
/********************************************************************************************************
** "以下為接口聲明"
** declare functions here
********************************************************************************************************/
/********************************************************************************************************
** Function name: ResetInit
** Descriptions: 復位入口
** Input: 無
** Output: 無
********************************************************************************************************/
extern void ResetInit(void);
/*********************************************************************************************************
** Function name: DispDesktop
** Descriptions: 控制液晶屏顯示桌面圖片
** Input: 無
** Output: 無
********************************************************************************************************/
extern void DispDesktop(void);
/********************************************************************************************************
** Function name: DisableMMU
** Descriptions: 禁止MMU
** Input: 無
** Output: 無
********************************************************************************************************/
extern void DisableMMU(void);
/********************************************************************************************************
** Function name: EnableICache
** Descriptions: 使能指令CACHE
** Input: 無
** Output: 無
********************************************************************************************************/
extern void EnableICache(void);
/********************************************************************************************************
** Function name: DisableICache
** Descriptions: 禁止指令CACHE
** Input: 無
** Output: 無
********************************************************************************************************/
extern void DisableICache(void);
/********************************************************************************************************
** Function name: EnableDCache
** Descriptions: 使能數據CACHE
** Input: 無
** Output: 無
********************************************************************************************************/
extern void EnableDCache(void);
/********************************************************************************************************
** Function name: DisableDCache
** Descriptions: 禁止數據CACHE
** Input: 無
** Output: 無
********************************************************************************************************/
extern void DisableDCache(void);
/********************************************************************************************************/
#ifdef __cplusplus
}
#endif
#endif // IN_TARGET
#endif // __TARGET_H
/*********************************************************************************************************
** End Of File
********************************************************************************************************/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -