target.h

来自「uCOS移植LPC2104的程序,次部分为裁减过的内容。」· C头文件 代码 · 共 39 行

H
39
字号
/********************************Copyright (c)*********************************
**--------------File Info-----------------------------------------------------
** File name: 			target.h
** Descriptions: 		header file of the specific codes for LPC2100 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.
*********************************************************************************/

extern void TargetInit(void);
/*********************************************************************************
** Function name:			TargetInit
**
** Descriptions:			Initialize the target board; it is called in a necessary place, change it as 
**********************************************************************************/
    #endif

    #ifdef __cplusplus
    }
    #endif

#endif
/**********************************************************************************
**                            End Of File
**********************************************************************************/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?