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

📄 resetprg.c

📁 瑞萨M16C编写的模拟PS2主机与标准键盘通讯程序.完整的工程文件,测试可用.
💻 C
字号:
/***********************************************************************************
FILE NAME  		resetprg.c
DESCRIPTION		Reset Initialisation Functions
			The users program will start in this file.

Copyright   : 2005 Renesas Technology Europe Ltd.
Copyright   : 2005 Renesas Technology Corporation.
All Rights Reserved

***********************************************************************************/

/***********************************************************************************
Revision History
DD.MM.YYYY OSO-UID Description
07.07.2005 RTE-MAB First Release
***********************************************************************************/


/***********************************************************************************
System Includes
***********************************************************************************/

/***********************************************************************************
User Includes
***********************************************************************************/
/* sfr62P.h provides a structure to access all of the device registers. */
#include "sfr62P.h"
#include "hwsetup.h"
#include "main.h"

/**********************************************************************************
Global variables
***********************************************************************************/

/***********************************************************************************
User Program Code
***********************************************************************************/

/**********************************************************************************
Function Name: 	Initialise
Description:	Initialise the micon then call main
Parameters: 	none
Return value: 	none
***********************************************************************************/
void Initialise(void)
{ 
	/* Initialise all the required peripheral modules */
	HardwareSetup();

	/* main function including users code */
	main();

	/* This function must never exit */
	for(;;);
}
/**********************************************************************************
End of function Initialise
***********************************************************************************/   

⌨️ 快捷键说明

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