野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 8377|回复: 3

初学者 基础不好 16位的数据分为高低八位传送 程序如下 我应该怎么改下面这段程序

[复制链接]
发表于 2017-3-14 10:55:29 | 显示全部楼层 |阅读模式
void Write_data(unsigned char data)
{
         CS_L;
         RS_H;
         RD_H;
         WR_H;        
         GPIO_Write(GPIOE,data);
         WR_L;
         WR_H;
         CS_H;
}
write_command(0x28);   
     write_data(0x00,0x06);   

    write_command(0x00);  
     write_data(0x00,0x01);   

    write_command(0x10);   
      write_data(0x00,0x00);
    write_command(0x11);   
     write_data(0x68,0x70);

    write_command(0x15);   
      write_data(0x00,0x00);

    write_command(0x01);   
      write_data(0x72,0xEF);

回复

使用道具 举报

发表于 2017-3-14 11:16:54 | 显示全部楼层
把data的高8位,低8位提取出来再发送就行啦
回复 支持 反对

使用道具 举报

 楼主| 发表于 2017-3-14 11:22:38 | 显示全部楼层
随风 发表于 2017-3-14 11:16
把data的高8位,低8位提取出来再发送就行啦

具体应该怎么操作  试了好多方法  假如把write—data(0x68,0x70)写成write——data(0x67)write——data(0x70),又出现别的 错误
回复 支持 反对

使用道具 举报

 楼主| 发表于 2017-3-14 15:00:50 | 显示全部楼层
随风 发表于 2017-3-14 11:16
把data的高8位,低8位提取出来再发送就行啦

void write_data(unsigned int data)
{
     u8 data_h,data_l;
         data_h=(u8)(data>>8);
         data_l=(u8)data;
         CS_L;
         RS_H;
         RD_H;
         WR_H;       
         GPIO_Write(GPIOE,data_h);
         GPIO_Write(GPIOE,data_l);
         WR_L;
         WR_H;
         CS_H;
}
void lcd_Init(void)
        {
           RES_H;
           delay_ms(1);
           RES_L;                                                                       
           delay_ms(50);
           RES_H;
           delay_ms(200);
          
//***********************LCD SET **********************************************

   write_command(0x28);    // VCOM OTP
     write_data(0x0006);   

    write_command(0x00);    // start Oscillator
     write_data(0x0001);   

    write_command(0x10);    // set Sleep mode
      write_data(0x0000);  //Sleep out  



这样写  对吗  能否  教我怎么写
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

联系站长|手机版|野火电子官网|野火淘宝店铺|野火电子论坛 ( 粤ICP备14069197号 ) 大学生ARM嵌入式2群

GMT+8, 2024-11-24 04:01 , Processed in 0.032315 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表