LCD1602数据口更改过程中出现的问题

2019-07-21 01:26发布

在1602的数据线中,一般都是使用同一组数据线作为数据口,比如DB0-DB7对应PC0-PC7.
但是在实际应用中,为了使布板布线方便,我使用的数据线如下:
PB12-15对应DB7-DB4,PA8-11对应DB3-DB0.
不知下边的两段程序如何改写,求教大神!! void LCD1602_write_Com(u8 com)    //写命令字节
{
           LCD1602_Wait();
                 LCD_RS(OFF);       
                 LCD_RW(OFF);
            LCD_E(OFF);
//     GPIO_Write(GPIOC,com);     //端口赋值
                 GPIO_Write(GPIOB,(com&0xf0)<<8);
                 GPIO_Write(GPIOA,(com&0x0f)<<8);         
     delay_ms(5);
                LCD_E(ON);                     //高脉冲
     delay_ms(5);
         LCD_E(OFF);
}

void LCD1602_write_Dat(u8 dat)     //写数据字节
{
     LCD1602_Wait();
     LCD_RS(ON);
                 LCD_RW(OFF);         
                 LCD_E(OFF);
//     GPIO_Write(GPIOC,dat);     //端口赋值
                 GPIO_Write(GPIOB,(dat&0xf0)<<8);
                 GPIO_Write(GPIOA,(dat&0x0f)<<8);                 
     delay_ms(5);
                LCD_E(ON);                  //高脉冲
                 delay_ms(50);
                LCD_E(OFF);
  }

我尝试将 GPIO_Write(GPIOC,dat); 更改为                 GPIO_Write(GPIOB,(com&0xf0)<<8); GPIO_Write(GPIOA,(com&0x0f)<<8);         
但是一直没有成功!求指教!!

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
4条回答
十一和一百一十
1楼-- · 2019-07-21 03:28
改接口之后,初始化程序改过了吗?
知马力
2楼-- · 2019-07-21 03:31
十一和一百一十 发表于 2019-5-14 18:14
改接口之后,初始化程序改过了吗?

初始化都改了的,感觉就是数据跟命令的写入有问题!
十一和一百一十
3楼-- · 2019-07-21 04:25
 精彩回答 2  元偷偷看……
知马力
4楼-- · 2019-07-21 09:53
十一和一百一十 发表于 2019-5-14 18:17
那你把写入程序打开看看传入参数具体怎么用的呗,是不是只改传入参数就行了

这个是完整的程序,在其他板子上调试是OK的,移到这边变化的只是IO口,有时间请帮分析一下

  //PA15->RS  PB3->WR   PB5 ->E  PB12-15->DB7-DB4  PA8-11 ->DB3-DB0
void LCD1602_Configuration(void)
{
                GPIO_InitTypeDef GPIO_InitStructure;
       
                RCC_APB2PeriphClockCmd(RCC_AHBPeriph_GPIOA | RCC_AHBPeriph_GPIOB,ENABLE);        //开启端口时钟,这些都是要用到的。
       
                GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8|GPIO_Pin_9|GPIO_Pin_10|GPIO_Pin_11|GPIO_Pin_15;
                GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
                GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;//输出模式,这个作为数据输出端口       
          GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
                GPIO_Init(GPIOA,&GPIO_InitStructure);       

                GPIO_InitStructure.GPIO_Pin = GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_12|GPIO_Pin_13|GPIO_Pin_14|GPIO_Pin_15;
                GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
                GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;//输出模式,这个作为数据输出端口       
          GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
                GPIO_Init(GPIOB,&GPIO_InitStructure);
                LCD1602_Initial();
}

void LCD1602_Wait(void)
{
        u8 status;
//        GPIO_Write(GPIOC,0xff);
        GPIO_Write(GPIOB,0xf000);
        GPIO_Write(GPIOA,0x0f00);
        LCD_RS(OFF);
        LCD_RW(ON);
        do
        {
                LCD_E(ON);
                delay_ms(5);        //延时5ms,非常重要
                status = GPIO_ReadInputDataBit(GPIOB, GPIO_Pin_15);//读取状态字C7
                LCD_E(OFF);
        }while(status & 0x80);//bit7等于1表示液晶正忙,重复检测直到其等于0为止
}

void LCD1602_write_Com(u8 com)    //写命令字节
{
           LCD1602_Wait();
                 LCD_RS(OFF);       
                 LCD_RW(OFF);
            LCD_E(OFF);
//     GPIO_Write(GPIOC,com);     //端口赋值
                 GPIO_Write(GPIOB,(com&0xf0)<<8);
                 GPIO_Write(GPIOA,(com&0x0f)<<8);         
     delay_ms(5);
                LCD_E(ON);                     //高脉冲
     delay_ms(5);
         LCD_E(OFF);
}
  
void LCD1602_write_Dat(u8 dat)     //写数据字节
{
     LCD1602_Wait();
     LCD_RS(ON);
                 LCD_RW(OFF);         
                 LCD_E(OFF);
//     GPIO_Write(GPIOC,dat);     //端口赋值
                 GPIO_Write(GPIOB,(dat&0xf0)<<8);
                 GPIO_Write(GPIOA,(dat&0x0f)<<8);                 
     delay_ms(5);
                LCD_E(ON);                  //高脉冲
                 delay_ms(50);
                LCD_E(OFF);
  }

void LCD1602_ClearScreen(void)     //清屏
{
        LCD1602_write_Com(0x01);
}

void LCD1602_Set_Cursor(u8 x, u8 y)  //设置光标位置
{
        u8 addr;
        if (y == 0)
                addr = 0x00 + x;
        else
                addr = 0x40 + x;
        LCD1602_write_Com(addr | 0x80);
}

void LCD1602_Show_Str(u8 x, u8 y, u8 *str)  //显示字节
{
        LCD1602_Wait();
        LCD1602_Set_Cursor(x, y);
        while(*str != '')
        {
                LCD1602_write_Dat(*str++);
        }
}

void LCD_Write_Char(u8 x, u8 y, u8 c)
{
        if(y == 0)
        {
                LCD1602_write_Com(0x80+x);
        }
        else
        {
                LCD1602_write_Com(0xC0+x);
        }
        LCD1602_write_Dat(c);
}



void LCD1602_Initial(void)                         //lcd初始化
{
        delay_ms(5);
        LCD1602_write_Com(0x38);
        delay_ms(5);
        LCD1602_write_Com(0x38);
        delay_ms(5);
        LCD1602_write_Com(0x38);
        LCD1602_write_Com(0x0c);
        LCD1602_write_Com(0x06);
        LCD1602_write_Com(0x01);
}

一周热门 更多>