# include
typedef unsigned char uint8;
typedef unsigned int uint16;
typedef unsigned int uint16;
uint8 num = 0;
void delay(uint16 n) //延时函数
{
while(n–);
}
void delay(uint16 n) //延时函数
{
while(n–);
}
void UART_init(void)
{
SCON = 0x50; //串口操控寄存器在方法1条件下,M1 = 1;M0 = 0 REN = 1,翻开答应串口接纳数
TMOD = 0x20; //将定时器1置为主动重装形式。即方法2
TH1 = 0xFD; //TH1 = TL1 = 256 – 11059200/(12 * 32 * 9600) (12为12个时钟周期)
TL1 = 0xFD;
TR1 = 1; //答应串口接纳数据
}
void UART_send_byte(uint8 dat)
{
SBUF = dat;
while(!TI); //发送中止位时由硬件置1有必要软件清零
TI = 0;
}
main()
{
UART_init(); //串口初始化
while(1)
{
UART_send_byte(num++);
delay(20000);
}
}
{
SCON = 0x50; //串口操控寄存器在方法1条件下,M1 = 1;M0 = 0 REN = 1,翻开答应串口接纳数
TMOD = 0x20; //将定时器1置为主动重装形式。即方法2
TH1 = 0xFD; //TH1 = TL1 = 256 – 11059200/(12 * 32 * 9600) (12为12个时钟周期)
TL1 = 0xFD;
TR1 = 1; //答应串口接纳数据
}
void UART_send_byte(uint8 dat)
{
SBUF = dat;
while(!TI); //发送中止位时由硬件置1有必要软件清零
TI = 0;
}
main()
{
UART_init(); //串口初始化
while(1)
{
UART_send_byte(num++);
delay(20000);
}
}