📄 main.c
字号:
/*********************************************************************************************
* File: main.c
* Author: embest
* Desc: c main entry
* History:
*********************************************************************************************/
/*--- include files ---*/
#include "44blib.h"
#include "44b.h"
#include "stdio.h"
/*--- function declare ---*/
void Main(void);
/*--- extern function ---*/
extern void Digit_Led_Test();
/*--- function code ---*/
/*********************************************************************************************
* name: main
* func: c code entry
* para: none
* ret: none
* modify:
* comment:
*********************************************************************************************/
void Main(void)
{
char tmp;
sys_init(); /* Initial 44B0X's Interrupt,Port and UART */
_Link(); /* Print Misc info */
/******************/
/* user interface */
/******************/
Uart_Printf("\n\rEmbest 44B0X Evaluation Board(S3CEV40)");
Uart_Printf("\n\r8-segment Digit LED Test Example(Please look at LED)\n");
for( ; ; )
{
Digit_Led_Test();
Delay(500);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -