?? target.h
字號:
/******************************************************************************************************
** File name: target.h
** Descriptions: header file of the specific codes for LPC2200 target boards
** Every project should include a copy of this file, user may modify it as needed
********************************************************************************************************/
#ifndef __TARGET_H
#define __TARGET_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef IN_TARGET
extern void Reset(void);
/*********************************************************************************************************
** Function name: Reset
** Descriptions: resets the target board.
** input parameters: 無
**
** Returned value: 無
**
** Used global variables: 無
** Calling modules: 無
**
********************************************************************************************************/
extern void TargetInit(void);
/*********************************************************************************************************
** Function name: TargetInit
**
** Descriptions: Initialize the target board; it is called in a necessary place, change it as
** needed
**
** input parameters: 無
** Returned value: 無
**
** Used global variables: 無
** Calling modules: 無
**
********************************************************************************************************/
#endif
#ifdef __cplusplus
}
#endif
#endif
/*********************************************************************************************************
** End Of File
********************************************************************************************************/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -