热搜关键词: 电路基础ADC数字信号处理封装库PLC

null

ht1621驱动程序

  • 1星
  • 2013-09-22
  • 10.64KB
  • 需要1积分
  • 6次下载
标签: ht1621驱动程序

ht1621驱动程序

LCD驱动HT1621#include  <reg51.h>#include  <types.h>#include  <intrins.h>#include  <bin.h>extern  BOOL  PIN_1621_CS;extern  BOOL  PIN_1621_DAT;extern  BOOL  PIN_1621_WR;#define  CLK_DELAY()  {_nop_();  _nop_();  _nop_();}//--------------------------------------------------------------------------//  Name:  Write_1621_RAM//--------------------------------------------------------------------------void  Write_1621_RAM(BYTE  addr,  BYTE  idata  *buf,  BYTE  size){BYTE  i,j;BYTE  tmp;PIN_1621_CS  =  1;  //  clear  CSCLK_DELAY();PIN_1621_CS  =  0;  //  clear  CS//  CMD  -  101tmp  =  B0000_0101;for  (i=3;  i>0;  --i){PIN_1621_DAT  =  tmp  &  0x04;  tmp  <<=  1;PIN_1621_WR  =  0;  CLK_DELAY();PIN_1621_WR  =  1;  CLK_DELAY();}//  Addr  -  0x00tmp  =  addr  &  B0011_1111;for  (i=6;  i>0;  --i){PIN_1621_DAT  =  tmp  &  0x04;  tmp  <<=  1;PIN_1621_WR  =  0;  CLK_DELAY();PIN_1621_WR  =  1;  CLK_DELAY();}//  data  -  successive  32  bytesfor  (j=size;  j>0;  --j){tmp  =  *buf;for  (i=8;  i>0;  --i){PIN_1621_DAT  =  tmp  &  0x01;  tmp  >>=  1;PIN_1621_WR  =  0;  CLK_DELAY();PIN_1621_WR  =  1;  CLK_DELAY();}buf  ++;}}

展开预览

猜您喜欢

评论

登录/注册

意见反馈

求资源

回顶部

推荐内容

热门活动

热门器件

随便看看

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
×