Main.C
资源名称:arm_exam.rar [点击查看]
上传用户:mhstny
上传日期:2022-08-05
资源大小:793k
文件大小:0k
源码类别:
微处理器开发
开发平台:
Unix_Linux
- #include "2410addr.h"
- #include "2410lib.h"
- #include "timer.h"
- int Main(void)
- {
- SetClockDivider(1, 1);//FLCK:HCLK:PCLK=1:2:4
- SetSysFclk(DFT_FCLK_VAL);//Fout=200MHZ
- Port_Init();
- Uart_Select(0);
- Uart_Init(0, UART_BAUD);
- while(1)
- {
- Uart_Printf("My UART0 is OK!n");
- Delay(100);
- }
- }