Department of Computer Scien
ce and Information Engineering
National Cheng Kung University
HANEL
SERIAL PORT PROGRAMMING
IN C
Transmitting and Receiving
Data(cont’)
Example 10-16Write an 8051 C program to transfer the message “YES” serially at 9600 baud, 8-bit data, 1 stop bit. Do this continuously. Solution:#include <reg51.h>void SerTx(unsigned char);void main(void){TMOD=0x20; //use Timer 1, mode 2TH1=0xFD; //9600 baud rateSCON=0x50;TR1=1; //start timerwhile (1) {
SerTx(‘Y’);SerTx(‘E’);SerTx(‘S’);}
} void SerTx(unsigned char x){SBUF=x; //place value in bufferwhile (TI==0); //wait until transmittedTI=0;}