====== How To Use The Uart ====== //__About this Article__// * **Author**: allen --- allen@cubietech.com --- 2014/03/26 16:50 * **Copyrights**: [[http://creativecommons.org/licenses/by-sa/3.0/|CC Attribution-Share Alike 3.0 Unported]] * **Contributors**: [[http://cubieboard.org/|Cubieboard Community]] : ... ===== Abstract ===== Here is the guide to teach that how to enable the uart port on cubiboard and how to test the uart port is available . ===== Cubieboard pin ==== Cubietruck [[http://docs.cubieboard.org/a20-cubietruck_gpio_pin]] Cubieboard 1 2 [[http://docs.cubieboard.org/cubieboard1_and_cubieboard2_gpio_pin]] Fex Guide [[http://linux-sunxi.org/Fex_Guide]] ===== Open the port ===== #mount /dev/nanda /mnt #cd /mnt #bin2fex script.bin script.fex #vi script.fex Modify the script.fex to open the uart3 ,uart4 as below : [uart_para3] uart_used = 1 uart_port = 3 uart_type = 4 uart_tx = port:PG06<4><1> uart_rx = port:PG07<4><1> uart_rts = port:PG08<4><1> uart_cts = port:PG09<4><1> [uart_para4] uart_used = 1 uart_port = 4 uart_type = 2 uart_tx = port:PG10<4><1> uart_rx = port:PG11<4><1> Save the modification. #fex2bin script.fex script.bin #reboot After the reboot ,the uart3 and uart4 are available. **remember save as script.bin and reboot** ===== Test the uart ===== Write a internal loopback program to test the uart . #vi uart_test.c Edit the program /******************************************************************** **************************uart_test********************************* ********************************************************************/ #include #include #include #include #include #include #include #include #include #include #define TRUE 1 #define FALSE -1 int speed_arr[] = {B115200, B38400, B19200, B9600, B4800, B2400, B1200, B300, B38400, B19200, B9600, B4800, B2400, B1200, B300, }; int name_arr[] = {115200, 38400, 19200, 9600, 4800, 2400, 1200, 300, 38400, 19200, 9600, 4800, 2400, 1200, 300, }; void set_speed(int fd, int speed) { int i; int status; struct termios Opt; tcgetattr(fd,&Opt); for (i= 0;i 0) { set_speed(fd,115200); } else { printf("Can't Open Serial Port!\n"); exit(0); } if (set_Parity(fd,8,1,'N') == FALSE) { printf("Set Parity Error\n"); exit(1); } printf("\nWelcome to uart_test\n\n"); memset(buffer,0,sizeof(buffer)); char test[15] = "hello world"; nwrite = write(fd,test,strlen(test)); if(nwrite < 0) { printf("write error\n"); } printf("Send test data------>%s\n",test); while(1) { nread = read(fd,&buffer[n],1); if(nread < 0) { printf("read error\n"); } printf("read char is -> %c \n",buffer[n]); if (strlen(buffer) == strlen(test)) { printf("Read Test Data finished,Read Test Data is------->%s\n",buffer); memset(buffer,0,sizeof(buffer)); printf("Send test data again------>%s\n",test); write(fd,test,strlen(test)); n=0; sleep(1); continue; } n++; } } Install software build the compiled enviroment . #apt-get install gcc build-essential #gcc uart_test.c -o uart_test The uart0 3 4 5 6 are available in Cubieboard1 and Cubieboard2 ,while uart0 3 4 7 are available in Cubietruck, but uart0 is debug serial. To test uart3(or uart4) should make sure the PG06 and PG07 (or PG10 and PG11)internal loopback,use Dupont Line connect them . If you only open the uart0 4, uart4 is mapping the device ttyS1. While open the uart0 3 4, uart3 is mapping the device ttyS1. uart4 is mapping the device ttyS2. #./uart_test ttyS1 // or ttyS2 The termial will prinf as below,it prove the uart3 is working . {{:tutorials:common:选区_061.png?600|}} === See Also === {{tag>Cubieboard Cubietruck}}