uart串口实验
实验内容:
编写UART模块程序,通过串口将信息打印到终端。
实验目的:
熟悉开发环境的使用。
掌握exynos4412处理器的UART功能。
实验平台:
FS4412开发板,eclipse,secureCRT.
实验步骤:
1.查看con7串口在开发板的位置;
2.查看BUF_XuTXD2在核心板的位置:
3.查看GPA1_0和GPA1_1在芯片手册中的说明:
4.查看UART_2在芯片手册的说明:
1 #include "exynos_4412.h" 2 3 //#define GPA1CON __REG(0X11400020) 4 5 // 延时函数 6 void mydelay_ms(int ms) 7 { 8 int i, j; 9 while(ms--) 10 { 11 for (i = 0; i < 5; i++) 12 for (j = 0; j < 514; j++); 13 } 14 } 15 16 void putc(const char data) 17 { 18 while(!(UART2.UTRSTAT2 & 0x2)); //shifter--若为空不能继续 19 UART2.UTXH2 = data; 20 if(data == ' ') // 检测数据发送是否结束 21 putc(' '); 22 } 23 24 void puts(const char *pstr) 25 { 26 while(*pstr != '