野火电子论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 16725|回复: 5

stm32,LCD12864程序,不显示,求解析

[复制链接]
发表于 2013-7-31 15:55:00 | 显示全部楼层 |阅读模式
#include "stm32f10x.h"
#include "_12864_Config.h"
//简单延时函数
/*void delayms(uint8_t t)
{
t=t*500;
while(t--);
}*/
//延时nus
void delay_nus(unsigned long n)
{
  unsigned long j;
  while(n--)
{ j=8;
  while(j--);
}  
}
//延时nms
void DelayMs(unsigned char t)
{
while(t--)
delay_nus(1000);
}
//12864端口配置
void _12864_config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB | RCC_APB2Periph_GPIOA, ENABLE);
//12864控制口
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1 | GPIO_Pin_3 | GPIO_Pin_7 | GPIO_Pin_6 | GPIO_Pin_5;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_10MHz;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_Init(GPIOA, &GPIO_InitStructure);
//12864数据口
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_8 | GPIO_Pin_9 | GPIO_Pin_10 | GPIO_Pin_11 |
                GPIO_Pin_12 | GPIO_Pin_13 | GPIO_Pin_14 | GPIO_Pin_15;
GPIO_Init(GPIOB, &GPIO_InitStructure);
}
//***************写命令***************
void write_com(uint8_t com)
{
RS(0);
RW(0);
E(0);
GPIO_Write(GPIOB, 0xff00&(com<<8));
DelayMs(1);
E(1);
DelayMs(5);
E(0);

}
//**************写数据***************
void write_data(uint8_t data)
{
RS(1);
RW(0);
E(0);
GPIO_Write(GPIOB, 0xff00&(data<<8));
DelayMs(1);
E(1);
DelayMs(5);
E(0);
}
//*****************写字符*************
void write_char(uint8_t x,uint8_t y,uint8_t data)
{
if(x==1)
  write_com(0x80+y);
if(x==2)
  write_com(0x90+y);
if(x==3)
  write_com(0x88+y);
if(x==4)
  write_com(0x98+y);
  write_data(data);
}
//*************写字符串****************
void write_string(uint8_t x,uint8_t y,uint8_t *s)
{
if(x==1)
  write_com(0x80+y);
if(x==2)
  write_com(0x90+y);
if(x==3)
  write_com(0x88+y);
if(x==4)
  write_com(0x98+y);
while(*s!='\0')
{
  write_data(*s);
  s++;
}
}
//************12864初始化配置**************
void _12864_Init(void)
{
DelayMs(2);
GPIO_ResetBits(GPIOA,GPIO_Pin_6);//复位
DelayMs(300);
GPIO_SetBits(GPIOA,GPIO_Pin_6);
DelayMs(5);
GPIO_SetBits(GPIOA,GPIO_Pin_5);//PSB端

write_com(0x30);//8位数据,基本指令
DelayMs(5);
write_com(0x01);//清屏
DelayMs(5);
write_com(0x0E);//整体显示,开游标及位置
DelayMs(5);
}

回复

使用道具 举报

 楼主| 发表于 2013-7-31 15:55:26 | 显示全部楼层
漂亮~拿分走人呵呵,楼下继续!拿分走人呵呵,楼下继续!拿分走人呵呵,楼下继续!拿分走人呵呵,楼下继续!拿分走人呵呵,楼下继续!拿分走人呵呵,楼下继续!
回复 支持 反对

使用道具 举报

发表于 2013-7-31 16:48:23 | 显示全部楼层
从 51 移植过来的吧?
注意延时,和时序
别人是帮不上忙的
回复 支持 反对

使用道具 举报

 楼主| 发表于 2013-7-31 18:13:34 | 显示全部楼层
风落小鱼 发表于 2013-7-31 16:48
从 51 移植过来的吧?
注意延时,和时序
别人是帮不上忙的

延时也注意过。,时序好像有两种
回复 支持 反对

使用道具 举报

发表于 2013-7-31 18:47:47 | 显示全部楼层
arm新人 发表于 2013-7-31 18:13
延时也注意过。,时序好像有两种

用示波器比较 51 的时序和 k60的时序有啥不同,应该是延时问题的
回复 支持 反对

使用道具 举报

发表于 2015-7-31 20:25:25 | 显示全部楼层
楼主解决了没?我也遇到了同样的问题?能不能分享一下程序!非常感谢
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-11-22 14:46 , Processed in 0.028598 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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