使用stc89c51单片机和液晶屏,实现串口助手输入的内容
时间: 2024-03-06 08:46:12 浏览: 115
UART.rar_89c51有uart_c51单片机uart_site:www.pudn.com_串口 从机_多机串口
实现串口助手输入的内容到LCD屏幕显示,可以按照以下步骤进行:
1. 首先,需要连接好STC89C51单片机和液晶屏,并设置好液晶屏的参数,包括显示模式、光标位置等。
2. 接下来,在程序中初始化串口和LCD屏幕,并设置串口接收中断。当串口接收到数据时,会触发中断,将数据存储到缓冲区中。
3. 在程序的主循环中,不断检查缓冲区中是否有接收到的数据。如果有数据,就将数据读取出来,并将其显示在液晶屏上。
下面是一个示例代码,可以根据实际情况进行修改:
```c
#include <reg52.h>
#define LCD_RS P2_0
#define LCD_RW P2_1
#define LCD_EN P2_2
#define LCD_DATA P0
sbit RX = P3^0;
sbit TX = P3^1;
unsigned char buffer[20];
unsigned char index = 0;
void delay(unsigned int ms)
{
unsigned int i, j;
for (i = 0; i < ms; i++) {
for (j = 0; j < 110; j++);
}
}
void write_cmd(unsigned char cmd)
{
LCD_RS = 0;
LCD_RW = 0;
LCD_DATA = cmd;
LCD_EN = 1;
delay(1);
LCD_EN = 0;
}
void write_data(unsigned char data)
{
LCD_RS = 1;
LCD_RW = 0;
LCD_DATA = data;
LCD_EN = 1;
delay(1);
LCD_EN = 0;
}
void init_lcd()
{
write_cmd(0x38); // 设置16x2显示模式
write_cmd(0x0c); // 关闭光标
write_cmd(0x06); // 设置光标移动方向
write_cmd(0x01); // 清屏
}
void init_uart()
{
TMOD = 0x20; // 设置为定时器1工作在方式2,波特率发生器
TH1 = 0xfd; // 设置波特率为9600bps
TL1 = 0xfd;
TR1 = 1; // 启动定时器1
SCON = 0x50; // 设置串口工作在模式1,允许接收
ES = 1; // 允许串口接收中断
EA = 1; // 允许总中断
}
void uart_isr() interrupt 4
{
unsigned char ch;
if (RI) {
RI = 0;
ch = SBUF;
buffer[index++] = ch;
if (ch == '\n') { // 接收到换行符,表示一条命令输入完毕
buffer[index] = '\0';
index = 0;
}
}
}
void main()
{
init_uart();
init_lcd();
while (1) {
if (index > 0) { // 有数据接收
write_data(buffer[index-1]);
}
}
}
```
在上述代码中,我们通过中断接收串口数据,并将其存储到缓冲区中。在主循环中,检查缓冲区中是否有数据,如果有,就将最后一个字符显示在液晶屏上。需要注意的是,由于串口助手输入的数据可能会包含多行,因此需要在接收到换行符时,将缓冲区中的数据作为一条命令输入处理。
阅读全文