⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 target.h

📁 周立功magic2410开发板中
💻 H
字号:
/****************************************Copyright (c)**************************************************
**                               Guangzhou ZHIYUAN electronics Co.,LTD.
**                                     
**                                 http://www.zyinside.com
**
**--------------File Info-------------------------------------------------------------------------------
** File Name: target.h
** Last modified Date: 2005-12-31 
** Last Version: v1.0
** Description: 目标板特殊的代码,包括异常处理程序和目标板初始化程序
**
**------------------------------------------------------------------------------------------------------
** Created By: 黄绍斌
** Created date: 2005-12-31 
** Version: v1.0
** Descriptions:
**
**------------------------------------------------------------------------------------------------------
** Modified by:
** Modified date:
** Version:
** Descriptions:
**
********************************************************************************************************/
#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: 无
** Created by: 黄绍斌
** Created Date: 2005-12-31 
**-------------------------------------------------------------------------------------------------------
** Modified by:
** Modified Date: 
**------------------------------------------------------------------------------------------------------
********************************************************************************************************/
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 + -