资源描述:
《12864串行控制2》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、/******************************************************************************模块名称:st7920串行方式驱动12864液晶驱动驱动芯片:st7920******************************************************************************/#include#include#include#include
2、#defineucharunsignedchar#defineuintunsignedintsbitCS=P2^4;sbitSCK=P2^6;sbitSID=P2^5;sbitRST=P2^3;//lowactive可以不用,也就是说,只用两条线和LCD通信sbitPSB=P2^1;sbitkey=P1^0;ucharcodeAC_TABLE[]={0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,//第一行汉字位置0x90,0x91,0x92,0x93,0x94,0x95,0x96,0x97
3、,//第二行汉字位置0x88,0x89,0x8a,0x8b,0x8c,0x8d,0x8e,0x8f,//第三行汉字位置0x98,0x99,0x9a,0x9b,0x9c,0x9d,0x9e,0x9f,//第四行汉字位置};ucharcodestr2[]="欢迎光临sunson!!";ucharcodestr1[]="黄河远上白云间,一片孤城万仞山。羌笛何须怨杨柳,春风不度玉门关。";ucharcodebmp1[];/*******************************************************
4、************************************函数名称:SendByte*功能描述:串口发送一个字节******************************************************************************************/voidSendByte(ucharDbyte){uchari;for(i=0;i<8;i++){SCK=0;if((Dbyte<
5、0;}}/*******************************************************************************************函数名称:ReceiveByte*功能描述:串口接收一个字节******************************************************************************************/ucharReceiveByte(void){uchari,temp1,temp2;temp1
6、=0;temp2=0;for(i=0;i<8;i++){temp1=temp1<<1;SCK=0;SCK=1;SCK=0;if(SID)temp1++;}for(i=0;i<8;i++){temp2=temp2<<1;SCK=0;SCK=1;SCK=0;if(SID)temp2++;}temp1=0xf0&temp1;temp2=(0xf0&temp2)>>4;return(temp1+temp2);}/************************************************************
7、*******************************函数名称:CheckBusy******************************************************************************************/voidCheckBusy(void){doSendByte(0xfc);//11111,RW(1),RS(0),0while(0x80&ReceiveByte());//BF(.7)=1Busy}/****************************
8、***************************************************************函数名称:WriteCommand************************************************************************