//以下红色代码部分为,改过的程序。为什么不行这样编写。具体应该怎么做?
#include
__CONFIG(0x373A); //在线仿真配置
//__CONFIG(0x1836); //烧写配置
//芯片配置字,看门狗关,上电延时开,掉电检测关,低压编程关,加密,4M晶体HS振荡
#define rs RA1 //定义LCD的数据/命令控制口
#define rw RA2 //定义LCD的读/写控制口
#define e RA3 //定义LCD的使能口
#define nop() asm("nop") //定义nop()函数
//const unsigned char TAB1A[ ]={"春眠不觉晓,"};
const unsigned char TAB1B[ ]={"处处闻啼鸟。"};
const unsigned char TAB1C[ ]={"夜来风雨声,"};
const unsigned char TAB1D[ ]={"花落知多少。"};
unsigned int lcd_x; //定义LCD页地址寄存器
unsigned int lcd_y; //定义LCD列地址寄存器
char busy; //定义LCD忙标志位
void init(); //申明I/O口设置函数
void lcd_init(); //申明LCD初始化函数
void clear_p(); //申明清屏函数
void han_wr1a();
void qushu1a(int counts, unsigned char *ps);
//void han_wr2a();
void han_wr2b();
void han_wr2c();
void han_wr2d();
void wr_zb(); //申明有关显示设置函数
void flash(); //申明设置LCD显示闪烁函数
void qushu(int counts,const unsigned char *ps); //申明查表获取显示数据
void send_d(unsigned char x); //申明送一字节数据显示函数
void send_i(unsigned char x); //申明送一字节控制命令函数
void chk_busy(); //申明检测LCD是否工作繁忙函数
void delay(); //申明延时函数1,供各命令之间的延时和决定显示快慢
void delay1(); //申明延时函数2,用以决定显示闪烁快慢
//-------------------------------------------
//主程序
void main()
{
while(1)
{
init(); //调用I/O口设置函数
lcd_init(); //调用LCD初始化函数
clear_p(); //调用清屏函数
han_wr1a();
han_wr2b();
han_wr2c();
han_wr2d();
delay();
flash(); //调用显示闪烁函数
clear_p();
}
}
//-------------------------------------------
//I/O口设置函数
void init()
{
TRISA=0X00; //设置A口为输出
TRISD=0X00; //设置D口为输出
ADCON1=0X06; //设置A口为普通I/O口
}
//-------------------------------------------
//LCD初始化函数
void lcd_init()
{
nop();
send_i(0x30); //基本指令操作
send_i(0x01); //清除显示
send_i(0x06); //指定在写入或读取时,光标的移动方向
send_i(0x0c); //开显示,关光标,不闪烁
}
//为什么我改成这样不行呀???编译就出错了。-------
//Clean: Deleting intermediary and output files.
//Clean: Done.
//Executing: "e:\HT-PIC\BIN\PICC.EXE" -C -E"lcd.cce" "lcd.c" -O"lcd.obj" -Zg9 -O -ASMLIST -Q -MPLAB -16F877A
void han_wr1a()
{
send_i(0x81); //设置显示位置:第一行
qushu1a(0x0c,"春眠不觉晓,"); //调用取数函数,共14个数据,保存在数组TAB1A里
}
void qushu1a(int counts, unsigned char *ps)
{
int i; //定义循环变量
for(i=counts;i>0;i--) //循环counts次
{
send_d(*ps); //查表取数并调用显示一个字节数据函数送显示
delay(); //延长一定时间,确保能看到数据一个个的显示出来
ps++; //取下一个数据
}
}
//void han_wr2a()
//{
// send_i(0x81); //设置显示位置:第一行
// qushu(0x0c,TAB1A); //调用取数函数,共14个数据,保存在数组TAB1A里
//}
//-------------------------------------------
void han_wr2b()
{
send_i(0x91); //设置显示位置:第二行
qushu(0x0c,TAB1B); //调用取数函数,共16个数据,保存在数组TAB1B里
}
//-------------------------------------------
void han_wr2c()
{
send_i(0x89); //设置显示位置:第三行
qushu(0X0c,TAB1C); //调用取数函数,共16个数据,保存在数组TAB1C里
}
//-------------------------------------------
void han_wr2d()
{
send_i(0x99); //设置显示位置:第四行
qushu(0X0c,TAB1D); //调用取数函数,共16个数据,保存在数组TAB1D里
}
//有关显示设置函数
void wr_zb()
{
send_i(lcd_y);
send_i(lcd_x);
}
//-------------------------------------------
//显示闪烁函数
void flash()
{
send_i(0x08); //关显示
delay1(); //延长一定时间
send_i(0x0c); //开显示
delay1();
delay1(); //延长关显示两倍的时间
send_i(0x08); //关显示
delay1();
send_i(0x0c); //开显示
delay1();
delay1();
send_i(0x08); //关显示
delay1();
send_i(0x0c); //开显示
delay1();
delay1();
}
//-------------------------------------------
//清屏函数
void clear_p()
{
send_i(0x1); //清除所有显示
send_i(0x34); //扩展指令操作
send_i(0x30); //基本指令操作
}
//------------------------------------------
//查表函数
void qushu(int counts,const unsigned char *ps)
{
int i; //定义循环变量
for(i=counts;i>0;i--) //循环counts次
{
send_d(*ps); //查表取数并调用显示一个字节数据函数送显示
delay(); //延长一定时间,确保能看到数据一个个的显示出来
ps++; //取下一个数据
}
}
//-------------------------------------------
//显示一字节数据函数
void send_d(unsigned char x)
{
chk_busy(); //检测LCD是否工作繁忙
rs=1; //设置该字节数据是显示数据
rw=0; //设置该次操作为写
PORTD=x; //送数据口PORTD
e=1; //使能
nop();
nop();
nop();
e=0; //禁止
}
//--------------------------------------------
//送一字节命令代码函数
void send_i(unsigned char x)
{
chk_busy(); //检测LCD是否工作繁忙
rs=0; //设置该字节数据为控制命令
rw=0; //设置此次操作为写
PORTD=x; //送数据口PORTD
e=1; //使能
nop();
nop();
nop();
e=0; //禁止
}
//-------------------------------------------
//检测LCD是否工作繁忙
void chk_busy()
{
busy=1; //先置位繁忙标志位
TRISD=0XFF; //更改通信为输入
rs=0; //设置该字节数据为命令代码
rw=1; //设置此次操作为读
while(busy)
{
nop();
nop();
nop();
e=1; //使能
nop();
nop();
nop();
if(!RD7) busy=0; //检测LCD是否工作繁忙
nop();
nop();
nop();
e=0; //禁止
}
e=0; //禁止
TRISD=0X00; //恢复通信为输出
}
//-------------------------------------------
//延时函数
void delay()
{
int i;
for(i=0;i<5000;i++)
{;}
}
//-------------------------------------------
//延时函数1
void delay1()
{
int i;
for(i=0;i<10;i++)
{
delay(); //调用延时函数
}
} |