#include <reg52.h> #include <stdio.h> #define LCD1602_RS P2_0 // LCD1602?RS?? #define LCD1602_RW P2_1 // LCD1602?RW?? #define LCD1602_EN P2_2 // LCD1602?EN?? #define LCD1602_DATAPINS P0 // LCD1602????? sbit UART_RXD = P3^0; // ?????? sbit UART_TXD = P3^1; // ?????? void init_uart() // ????? { TMOD |= 0x20; // ?????1???2 TH1 = 0xfd; // ??????9600 TL1 = 0xfd; TR1 = 1; // ?????1 SCON = 0x50; // ???????1 ES = 1; // ?????? EA = 1; // ????? } void init_lcd() // ???LCD { LCD1602_RS = 0; LCD1602_RW = 0; LCD1602_EN = 0; delay_ms(15); lcd_write_cmd(0x38); // ??LCD?16x2????? delay_ms(5); lcd_write_cmd(0x0c); // ??LCD?? delay_ms(5); lcd_clear(); // ?? lcd_write_cmd(0x06); // ???????? } void lcd_write_cmd(unsigned char cmd) // ????LCD { LCD1602_RS = 0; LCD1602_DATAPINS = cmd; LCD1602_EN = 1; delay_us(2); LCD1602_EN = 0; delay_ms(1); } void lcd_write_data(unsigned char dat) // ????LCD { LCD1602_RS = 1; LCD1602_DATAPINS = dat; LCD1602_EN = 1; delay_us(2); LCD1602_EN = 0; delay_ms(1); } void lcd_clear() // ?? { lcd_write_cmd(0x01); } void lcd_set_cursor(unsigned char x, unsigned char y) // ?????? { unsigned char addr; if (y == 0) addr = 0x80 + x; else addr = 0xc0 + x; lcd_write_cmd(addr); } void lcd_puts(unsigned char x, unsigned char y, unsigned char *str) // ?????????? { lcd_set_cursor(x, y); while (*str != '\0') { lcd_write_data(*str); str++; } } void uart_isr() interrupt 4 // ???????? { if (RI) { RI = 0; lcd_write_data(SBUF); // ?????????LCD? } } void main() { init_uart(); init_lcd(); while (1); }
时间: 2023-07-24 18:16:46 浏览: 224
C标准库函数集
5星 · 资源好评率100%
这段代码实现了一个基于单片机的串口通信并将接收到的数据显示在LCD1602液晶屏上。其中,P2_1和P2_2是定义了LCD1602的控制引脚,P0是定义了LCD1602数据引脚。同时,还定义了一个uart_isr()函数,用于处理串口接收中断。在main()函数中,通过调用init_uart()和init_lcd()函数初始化串口和LCD1602,然后进入一个死循环中。
需要注意的是,如果你在编译这段代码时出现了P2_1和P2_2未定义的错误提示,可能是因为你没有正确定义这些引脚或没有包含相应的头文件。你需要检查一下你的代码,确定是否有定义这些引脚,或者添加对应的头文件。
阅读全文