📄 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 + -