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

📄 main.c

📁 Embest EudKit-II教学系统配Samsung S3C44B0处理器的部分测试程序。
💻 C
字号:
/*********************************************************************************************
* File:		main.c
* Author:	embest
* Desc:		c main entry
* History:	
*********************************************************************************************/
#include "44blib.h"
#include "44b.h"
#include "rtc.h"

/*------------------------------------------------------------------------------------------*/
/*	 								function declare					 				    */
/*------------------------------------------------------------------------------------------*/
char use_rtc(void);
char check_rtc(void);


/*********************************************************************************************
* name:		main
* func:		c code entry
* para:		none
* ret:		none
* modify:
* comment:		
*********************************************************************************************/
void Main()
{
	sys_init();                                                      // Initial 44B0X's Interrupt,Port and UART 

	// user interface
	uart_printf("\n\r Embest S3C44B0X Evaluation Board");

	// set the time for RTC and display current time
	while(1)
	{
		rtc_test();
	}
}

⌨️ 快捷键说明

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