#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改的,为什么显示屏一点反应都没有啊?(延时是微妙级的) |