打印

stm32控制LCD12864

[复制链接]
325|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
稻花香1号|  楼主 | 2019-11-28 11:54 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
#include "12864.h"
#include "bsp_SysTick.h"

void GPIO_Config(void)
{
        GPIO_InitTypeDef GPIO_InitStructure;
        
        RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOD|RCC_APB2Periph_GPIOE, ENABLE);
        
        GPIO_InitStructure.GPIO_Pin=GPIO_Pin_3|GPIO_Pin_4|GPIO_Pin_5|GPIO_Pin_6;
        GPIO_InitStructure.GPIO_Mode=GPIO_Mode_Out_PP;
        GPIO_InitStructure.GPIO_Speed=GPIO_Speed_50MHz;
        
        GPIO_Init(GPIOE,&GPIO_InitStructure);
        
        GPIO_InitStructure.GPIO_Pin=GPIO_Pin_All;
        GPIO_Init(GPIOD,&GPIO_InitStructure);
}

void write_com(uint16_t com)
{
        LCD_RS_OFF;
        LCD_RW_OFF;
        Delay_us(5);
        GPIOD->ODR=0x00ff&com;
        Delay_us(5);
        LCD_EN_ON;
        Delay_us(5);
        LCD_EN_OFF;
}

void write_data(uint16_t dat)
{
        LCD_RS_ON;
        LCD_RW_OFF;
        Delay_us(5);
        GPIOD->ODR=0x00ff&dat;
        Delay_us(5);
        LCD_EN_ON;
        Delay_us(5);
        LCD_EN_OFF;
}

void lcd_pos(uint8_t x,uint8_t y)
{
        uint8_t pos;
        if(x==0)
                x=0x0080;
        if(x==1)
                x=0x0090;
        if(x==2)
                x=0x0088;
        if(x==3)
                x=0x0098;
        pos=x+y;
        write_com(pos);
}

void lcd_init(void)
{
        GPIO_Config();
        LCD_EN_OFF;
        LCD_PSB_ON;
        write_com(0x0030);
        Delay_us(5);
        write_com(0x000c);
        Delay_us(5);
        write_com(0x0001);
        Delay_us(5);
}

void lcd_display(uint8_t x,uint8_t y,uint8_t *string)
{
        uint8_t i=0;
        lcd_pos(x,y);
        while(string!='\0')
        {
                write_data(string);
                Delay_us(5);
                i++;
        }
}

这个程序是根据51改的,为什么显示屏一点反应都没有啊?(延时是微妙级的)

使用特权

评论回复

相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

381

主题

382

帖子

1

粉丝