1.14寸彩屏
模块来源
采购链接:
https://item.taobao.com/item.htm?spm=a1z10.3-c-s.w4002-23284685161.16.192e76bc9mgja9&id=631853536402
资料下载链接:
https://pan.baidu.com/s/1cVzawBFj3ZkGml5Dj-368A
资料提取码:8888
规格参数
工作电压:3.3V
工作电流:20MA
模块尺寸:31.4(H) x 28(V) MM
像素大小:135(H) x 240(V)RGB
驱动芯片:ST7789V
通信协议:8位并口
管脚数量:16 Pin(2.54mm间距排针)
移植过程
我们的目标是将例程移植至天空星HC32F4A0PITB上。按照以下步骤,即可完成移植。
- 将源码导入工程;
- 根据编译报错处进行粗改;
- 修改引脚配置;
- 修改时序配置;
- 移植验证。
查看资料
打开厂家资料例程。具体路径见 图5.3.1-1 例程路径
在main.c文件发现对屏幕的初始化配置函数为 LCD_Init(); ,该函数里包含了对屏幕引脚的配置、对屏幕显示方式的配置。
我们主要修改的是引脚的初始化与时序的修改。
移植至工程
将厂家资料路径下的【LCD】文件夹,复制到自己的工程中。自己的工程至少需要有毫秒级延时函数。(工程可以参考入门手册空白工程下载)
打开自己的工程,将我们刚刚复制过来的文件导入.c和.h文件。
将lcd_init.h文件下的 sys.h 改为 hc32_ll.h,还要将lcd.h文件下的 sys.h 改为 hc32_ll.h。
(在左边将lcd.c和lcd_init.c的工程目录展开,就发现有lcd_init.h和lcd.h)
将lcd_init.c文件下的 delay.h 改为 board.h,还要将lcd.c文件下的 delay.h 改为 board.h。
分别在lcd_init.h与lcd.h文件中定义三个宏,u32、u16与u8。
#ifndef u8
#define u8 uint8_t
#endif
#ifndef u16
#define u16 uint16_t
#endif
#ifndef u32
#define u32 uint32_t
#endif
2
3
4
5
6
7
8
9
10
11
引脚选择
该屏幕需要设置8个接口,具体接口说明见 表5.3.3-1 各引脚说明。
因为使用的是软件并行口,所以除了特殊引脚外,其他引脚都可以设置。时序部分厂家已经完成,我们只需要将引脚和延时配置好即可。所以对应接入的屏幕引脚请按照你的需要。这里选择的引脚见表5.3.3-2 8位并行接线。
选择好引脚后,进入工程开始编写屏幕引脚初始化代码。
为了方便后续移植,我在lcd_init.h处宏定义了每一个引脚,后续根据需要进行修改即可。
//-----------------LCD端口移植----------------
// 1-VCC --3.3V
// 2-GND --GND
// 3-BLK --PA0
// 4-RES --PA1
// 5-CS --PA4
// 6-DC --PA3
// 7-WR --PA6
// 8-RD --PA5
// 9-DB0 --PC4
//10-DB1 --PA7
//11-DB2 --PB0
//12-DB3 --PC5
//13-DB4 --PE7
//14-DB5 --PB1
//15-DB6 --PE9
//16-DB7 --PE8
//RD
#define PORT_LCD_RD GPIO_PORT_A
#define GPIO_LCD_RD GPIO_PIN_05
//WR
#define PORT_LCD_WR GPIO_PORT_A
#define GPIO_LCD_WR GPIO_PIN_06
//CS
#define PORT_LCD_CS GPIO_PORT_A
#define GPIO_LCD_CS GPIO_PIN_04
//DC
#define PORT_LCD_DC GPIO_PORT_A
#define GPIO_LCD_DC GPIO_PIN_03
//RES
#define PORT_LCD_RES GPIO_PORT_A
#define GPIO_LCD_RES GPIO_PIN_01
//BLK
#define PORT_LCD_BLK GPIO_PORT_A
#define GPIO_LCD_BLK GPIO_PIN_00
//DB0
#define PORT_LCD_DB0 GPIO_PORT_C
#define GPIO_LCD_DB0 GPIO_PIN_04
//DB1
#define PORT_LCD_DB1 GPIO_PORT_A
#define GPIO_LCD_DB1 GPIO_PIN_07
//DB2
#define PORT_LCD_DB2 GPIO_PORT_B
#define GPIO_LCD_DB2 GPIO_PIN_00
//DB3
#define PORT_LCD_DB3 GPIO_PORT_C
#define GPIO_LCD_DB3 GPIO_PIN_05
//DB4
#define PORT_LCD_DB4 GPIO_PORT_E
#define GPIO_LCD_DB4 GPIO_PIN_07
//DB5
#define PORT_LCD_DB5 GPIO_PORT_B
#define GPIO_LCD_DB5 GPIO_PIN_01
//DB6
#define PORT_LCD_DB6 GPIO_PORT_E
#define GPIO_LCD_DB6 GPIO_PIN_09
//DB7
#define PORT_LCD_DB7 GPIO_PORT_E
#define GPIO_LCD_DB7 GPIO_PIN_08
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
将lcd_init.c源代码中的void LCD_GPIO_Init(void)修改为如下代码。
void LCD_GPIO_Init(void)
{
stc_gpio_init_t stcGpioInit; // 定义GPIO结构体
// 关闭GPIO寄存器写保护
LL_PERIPH_WE(LL_PERIPH_GPIO);
(void)GPIO_StructInit(&stcGpioInit); // 使用默认参数配置结构体
stcGpioInit.u16PinState = PIN_STAT_SET; // 高电平
stcGpioInit.u16PinDir = PIN_DIR_OUT; // 输出模式
stcGpioInit.u16PinOutputType = PIN_OUT_TYPE_CMOS; // 推挽输出
stcGpioInit.u16PinDrv = PIN_HIGH_DRV; // 驱动能力高
stcGpioInit.u16PullUp = PIN_PU_ON; // 上拉开启
// RD
(void)GPIO_Init(PORT_LCD_RD, GPIO_LCD_RD, &stcGpioInit);
// WR
(void)GPIO_Init(PORT_LCD_WR, GPIO_LCD_WR, &stcGpioInit);
// CS
(void)GPIO_Init(PORT_LCD_CS, GPIO_LCD_CS, &stcGpioInit);
// DC
(void)GPIO_Init(PORT_LCD_DC, GPIO_LCD_DC, &stcGpioInit);
// RES
(void)GPIO_Init(PORT_LCD_RES, GPIO_LCD_RES, &stcGpioInit);
// BLK
(void)GPIO_Init(PORT_LCD_BLK, GPIO_LCD_BLK, &stcGpioInit);
// DB0
(void)GPIO_Init(PORT_LCD_DB0, GPIO_LCD_DB0, &stcGpioInit);
// DB1
(void)GPIO_Init(PORT_LCD_DB1, GPIO_LCD_DB1, &stcGpioInit);
// DB2
(void)GPIO_Init(PORT_LCD_DB2, GPIO_LCD_DB2, &stcGpioInit);
// DB3
(void)GPIO_Init(PORT_LCD_DB3, GPIO_LCD_DB3, &stcGpioInit);
// DB4
(void)GPIO_Init(PORT_LCD_DB4, GPIO_LCD_DB4, &stcGpioInit);
// DB5
(void)GPIO_Init(PORT_LCD_DB5, GPIO_LCD_DB5, &stcGpioInit);
// DB6
(void)GPIO_Init(PORT_LCD_DB6, GPIO_LCD_DB6, &stcGpioInit);
// DB7
(void)GPIO_Init(PORT_LCD_DB7, GPIO_LCD_DB7, &stcGpioInit);
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
将lcd_init.h中的 LCD端口定义 宏,修改为图5.3.3-2样式。
//-----------------LCD端口定义----------------
#define LCD_RES_Set() GPIO_SetPins(PORT_LCD_RES, GPIO_LCD_RES)//RES
#define LCD_CS_Set() GPIO_SetPins(PORT_LCD_CS, GPIO_LCD_CS)//CS
#define LCD_DC_Set() GPIO_SetPins(PORT_LCD_DC, GPIO_LCD_DC)//DC
#define LCD_WR_Set() GPIO_SetPins(PORT_LCD_WR, GPIO_LCD_WR)//WR
#define LCD_RD_Set() GPIO_SetPins(PORT_LCD_RD, GPIO_LCD_RD)//RD
#define LCD_BLK_Set() GPIO_SetPins(PORT_LCD_BLK, GPIO_LCD_BLK)//BLK
#define LCD_RES_Clr() GPIO_ResetPins(PORT_LCD_RES, GPIO_LCD_RES)//RES
#define LCD_CS_Clr() GPIO_ResetPins(PORT_LCD_CS, GPIO_LCD_CS)//CS
#define LCD_DC_Clr() GPIO_ResetPins(PORT_LCD_DC, GPIO_LCD_DC)//DC
#define LCD_WR_Clr() GPIO_ResetPins(PORT_LCD_WR, GPIO_LCD_WR)//WR
#define LCD_RD_Clr() GPIO_ResetPins(PORT_LCD_RD, GPIO_LCD_RD)//RD
#define LCD_BLK_Clr() GPIO_ResetPins(PORT_LCD_BLK, GPIO_LCD_BLK)//BLK
2
3
4
5
6
7
8
9
10
11
12
13
14
15
因为是并口屏,传输8位的数据,是一根线一个位,8个位数据就是8根线。所以我们需要将一个8位的数据,装载到8根数据线上。在 lcd_init.h 中添加以下代码,方便后续的数据传输和端口修改。
// x ? 置1 : 置0
#define BIT_DB7(x) ( x ? GPIO_SetPins(PORT_LCD_DB7,GPIO_LCD_DB7) : GPIO_ResetPins(PORT_LCD_DB7,GPIO_LCD_DB7) )
#define BIT_DB6(x) ( x ? GPIO_SetPins(PORT_LCD_DB6,GPIO_LCD_DB6) : GPIO_ResetPins(PORT_LCD_DB6,GPIO_LCD_DB6) )
#define BIT_DB5(x) ( x ? GPIO_SetPins(PORT_LCD_DB5,GPIO_LCD_DB5) : GPIO_ResetPins(PORT_LCD_DB5,GPIO_LCD_DB5) )
#define BIT_DB4(x) ( x ? GPIO_SetPins(PORT_LCD_DB4,GPIO_LCD_DB4) : GPIO_ResetPins(PORT_LCD_DB4,GPIO_LCD_DB4) )
#define BIT_DB3(x) ( x ? GPIO_SetPins(PORT_LCD_DB3,GPIO_LCD_DB3) : GPIO_ResetPins(PORT_LCD_DB3,GPIO_LCD_DB3) )
#define BIT_DB2(x) ( x ? GPIO_SetPins(PORT_LCD_DB2,GPIO_LCD_DB2) : GPIO_ResetPins(PORT_LCD_DB2,GPIO_LCD_DB2) )
#define BIT_DB1(x) ( x ? GPIO_SetPins(PORT_LCD_DB1,GPIO_LCD_DB1) : GPIO_ResetPins(PORT_LCD_DB1,GPIO_LCD_DB1) )
#define BIT_DB0(x) ( x ? GPIO_SetPins(PORT_LCD_DB0,GPIO_LCD_DB0) : GPIO_ResetPins(PORT_LCD_DB0,GPIO_LCD_DB0) )
2
3
4
5
6
7
8
9
在 lcd_init.c 文件中,找到 void LCD_Writ_Bus(u8 dat) 函数,将其修改如下。
void LCD_Writ_Bus(u8 dat)
{
LCD_CS_Clr();
LCD_WR_Clr();
BIT_DB7( (dat>>7)&0x01 );
BIT_DB6( (dat>>6)&0x01 );
BIT_DB5( (dat>>5)&0x01 );
BIT_DB4( (dat>>4)&0x01 );
BIT_DB3( (dat>>3)&0x01 );
BIT_DB2( (dat>>2)&0x01 );
BIT_DB1( (dat>>1)&0x01 );
BIT_DB0( (dat>>0)&0x01 );
LCD_WR_Set();
LCD_CS_Set();
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
到这里就移植完成了,请移步到1.7.4节进行移植验证。
移植验证
在main.c中输入代码如下
/*
* 立创开发板软硬件资料与相关扩展板软硬件资料官网全部开源
* 开发板官网:www.lckfb.com
* 技术支持常驻论坛,任何技术问题欢迎随时交流学习
* 立创论坛:https://oshwhub.com/forum
* 关注bilibili账号:【立创开发板】,掌握我们的最新动态!
* 不靠卖板赚钱,以培养中国工程师为己任
* Change Logs:
* Date Author Notes
* 2024-04-13 LCKFB-LP first version
*/
#include "board.h"
#include "bsp_uart.h"
#include "stdio.h"
#include "lcd_init.h"
#include "lcd.h"
#include "pic.h"
int32_t main(void)
{
board_init();
uart1_init(115200U);
LCD_Init();//LCD初始化
LCD_Fill(0,0,LCD_W,LCD_H,WHITE);
float t = 0;
while(1)
{
LCD_ShowString(24,30,(uint8_t *)"LCD_W:",RED,WHITE,16,0);
LCD_ShowIntNum(72,30,LCD_W,3,RED,WHITE,16);
LCD_ShowString(24,50,(uint8_t *)"LCD_H:",RED,WHITE,16,0);
LCD_ShowIntNum(72,50,LCD_H,3,RED,WHITE,16);
LCD_ShowFloatNum1(20,80,t,4,RED,WHITE,16);
t+=0.11f;
LCD_ShowPicture(65,80,40,40,gImage_1);
delay_ms(1000);
}
}
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
上电现象:
模块移植成功代码: