1.14寸彩屏
1. 模块来源
2. 规格参数
以下信息见厂家资料
工作电压:3.3V
工作电流:20MA
模块尺寸:31.4(H) x 28(V) MM
像素大小:135(H) x 240(V)RGB
驱动芯片:ST7789V
通信协议:8位并口
管脚数量:16 Pin(2.54mm间距排针)
3. 移植过程
我们的目标是将例程移植至立创·CW32F030C8T6开发板上。按照以下步骤,即可完成移植。
- 将源码导入工程;
- 根据编译报错处进行粗改;
- 修改引脚配置;
- 修改时序配置;
- 移植验证。
3.1 查看资料
打开厂家资料例程(例程下载见网盘链接)。具体路径见下图。
3.2 移植至工程
将厂家资料路径下的【LCD】文件夹,复制到自己的工程中。自己的工程至少需要有毫秒级延时函数。(工程可以参考入门手册工程模板)
打开自己的工程,将我们刚刚复制过来的文件导入.c和.h文件。
将lcd_init.h文件下的 sys.h 改为 board.h,还要将lcd.h文件下的 sys.h 改为 board.h。
(在左边将lcd.c和lcd_init.c的工程目录展开,就发现有lcd_init.h和lcd.h)
将lcd_init.c文件下的 delay.h 注释掉,还要将lcd.c文件下的 delay.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
3.3 引脚选择
该屏幕需要设置8个接口,具体接口说明见下表。
选择好引脚后,进入工程开始编写屏幕引脚初始化代码。
为了方便后续移植,我在lcd_init.h处宏定义了每一个引脚,后续根据需要进行修改即可。
//-----------------LCD端口移植----------------
// 1-VCC --3.3V
// 2-GND --GND
// 3-BLK --PA0
// 4-RES --PA1
// 5-CS --PA2
// 6-DC --PA3
// 7-WR --PA4
// 8-RD --PA5
// 9-DB0 --PA6
//10-DB1 --PA7
//11-DB2 --PB0
//12-DB3 --PB1
//13-DB4 --PB10
//14-DB5 --PB11
//15-DB6 --PB12
//16-DB7 --PB13
#define RCC_LCD1_ENABLE() __RCC_GPIOA_CLK_ENABLE()
#define RCC_LCD2_ENABLE() __RCC_GPIOB_CLK_ENABLE()
//RD
#define PORT_LCD_RD CW_GPIOA
#define GPIO_LCD_RD GPIO_PIN_5
//WR
#define PORT_LCD_WR CW_GPIOA
#define GPIO_LCD_WR GPIO_PIN_4
//CS
#define PORT_LCD_CS CW_GPIOA
#define GPIO_LCD_CS GPIO_PIN_2
//DC
#define PORT_LCD_DC CW_GPIOA
#define GPIO_LCD_DC GPIO_PIN_3
//RES
#define PORT_LCD_RES CW_GPIOA
#define GPIO_LCD_RES GPIO_PIN_1
//BLK
#define PORT_LCD_BLK CW_GPIOA
#define GPIO_LCD_BLK GPIO_PIN_0
//DB0
#define PORT_LCD_DB0 CW_GPIOA
#define GPIO_LCD_DB0 GPIO_PIN_6
//DB1
#define PORT_LCD_DB1 CW_GPIOA
#define GPIO_LCD_DB1 GPIO_PIN_7
//DB2
#define PORT_LCD_DB2 CW_GPIOB
#define GPIO_LCD_DB2 GPIO_PIN_0
//DB3
#define PORT_LCD_DB3 CW_GPIOB
#define GPIO_LCD_DB3 GPIO_PIN_1
//DB4
#define PORT_LCD_DB4 CW_GPIOB
#define GPIO_LCD_DB4 GPIO_PIN_10
//DB5
#define PORT_LCD_DB5 CW_GPIOB
#define GPIO_LCD_DB5 GPIO_PIN_11
//DB6
#define PORT_LCD_DB6 CW_GPIOB
#define GPIO_LCD_DB6 GPIO_PIN_12
//DB7
#define PORT_LCD_DB7 CW_GPIOB
#define GPIO_LCD_DB7 GPIO_PIN_13
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
将lcd_init.c源代码中的void LCD_GPIO_Init(void)修改为如下代码。
void LCD_GPIO_Init(void)
{
GPIO_InitTypeDef GPIO_InitStruct; // GPIO初始化结构体
RCC_LCD1_ENABLE(); // 使能GPIO时钟1
RCC_LCD2_ENABLE(); // 使能GPIO时钟2
GPIO_InitStruct.Pins = GPIO_LCD_RD| // GPIO引脚
GPIO_LCD_WR|
GPIO_LCD_CS|
GPIO_LCD_DC|
GPIO_LCD_RES|
GPIO_LCD_BLK|
GPIO_LCD_DB0|
GPIO_LCD_DB1;
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; // 推挽输出
GPIO_InitStruct.Speed = GPIO_SPEED_HIGH; // 输出速度高
GPIO_Init(PORT_LCD_RD, &GPIO_InitStruct); // 初始化
GPIO_InitStruct.Pins = GPIO_LCD_DB2|
GPIO_LCD_DB3|
GPIO_LCD_DB4|
GPIO_LCD_DB5|
GPIO_LCD_DB6|
GPIO_LCD_DB7;
GPIO_Init(PORT_LCD_DB2, &GPIO_InitStruct); // 初始化
}
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
将lcd_init.h中的 LCD端口定义 宏,修改为右图样式。
//-----------------LCD端口定义----------------
#define LCD_RES_Set() GPIO_WritePin(PORT_LCD_RES, GPIO_LCD_RES, GPIO_Pin_SET)//RES
#define LCD_CS_Set() GPIO_WritePin(PORT_LCD_CS, GPIO_LCD_CS, GPIO_Pin_SET)//CS
#define LCD_DC_Set() GPIO_WritePin(PORT_LCD_DC, GPIO_LCD_DC, GPIO_Pin_SET)//DC
#define LCD_WR_Set() GPIO_WritePin(PORT_LCD_WR, GPIO_LCD_WR, GPIO_Pin_SET)//WR
#define LCD_RD_Set() GPIO_WritePin(PORT_LCD_RD, GPIO_LCD_RD, GPIO_Pin_SET)//RD
#define LCD_BLK_Set() GPIO_WritePin(PORT_LCD_BLK, GPIO_LCD_BLK, GPIO_Pin_SET)//BLK
#define LCD_RES_Clr() GPIO_WritePin(PORT_LCD_RES, GPIO_LCD_RES, GPIO_Pin_RESET)//RES
#define LCD_CS_Clr() GPIO_WritePin(PORT_LCD_CS, GPIO_LCD_CS, GPIO_Pin_RESET)//CS
#define LCD_DC_Clr() GPIO_WritePin(PORT_LCD_DC, GPIO_LCD_DC, GPIO_Pin_RESET)//DC
#define LCD_WR_Clr() GPIO_WritePin(PORT_LCD_WR, GPIO_LCD_WR, GPIO_Pin_RESET)//WR
#define LCD_RD_Clr() GPIO_WritePin(PORT_LCD_RD, GPIO_LCD_RD, GPIO_Pin_RESET)//RD
#define LCD_BLK_Clr() GPIO_WritePin(PORT_LCD_BLK, GPIO_LCD_BLK, GPIO_Pin_RESET)//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) { GPIO_WritePin( PORT_LCD_DB7, GPIO_LCD_DB7, x?GPIO_Pin_SET:GPIO_Pin_RESET); }
#define BIT_DB6(x) { GPIO_WritePin( PORT_LCD_DB6, GPIO_LCD_DB6, x?GPIO_Pin_SET:GPIO_Pin_RESET); }
#define BIT_DB5(x) { GPIO_WritePin( PORT_LCD_DB5, GPIO_LCD_DB5, x?GPIO_Pin_SET:GPIO_Pin_RESET); }
#define BIT_DB4(x) { GPIO_WritePin( PORT_LCD_DB4, GPIO_LCD_DB4, x?GPIO_Pin_SET:GPIO_Pin_RESET); }
#define BIT_DB3(x) { GPIO_WritePin( PORT_LCD_DB3, GPIO_LCD_DB3, x?GPIO_Pin_SET:GPIO_Pin_RESET); }
#define BIT_DB2(x) { GPIO_WritePin( PORT_LCD_DB2, GPIO_LCD_DB2, x?GPIO_Pin_SET:GPIO_Pin_RESET); }
#define BIT_DB1(x) { GPIO_WritePin( PORT_LCD_DB1, GPIO_LCD_DB1, x?GPIO_Pin_SET:GPIO_Pin_RESET); }
#define BIT_DB0(x) { GPIO_WritePin( PORT_LCD_DB0, GPIO_LCD_DB0, x?GPIO_Pin_SET:GPIO_Pin_RESET); }
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
到这里就移植完成了。
4 移植验证
在main.c中输入代码如下
/*
* 立创开发板软硬件资料与相关扩展板软硬件资料官网全部开源
* 开发板官网:www.lckfb.com
* 技术支持常驻论坛,任何技术问题欢迎随时交流学习
* 立创论坛:https://oshwhub.com/forum
* 关注bilibili账号:【立创开发板】,掌握我们的最新动态!
* 不靠卖板赚钱,以培养中国工程师为己任
* Change Logs:
* Date Author Notes
* 2024-06-18 LCKFB-LP first version
*/
#include "board.h"
#include "stdio.h"
#include "bsp_uart.h"
#include "lcd_init.h"
#include "lcd.h"
#include "pic.h"
int32_t main(void)
{
board_init(); // 开发板初始化
uart1_init(115200); // 串口1波特率115200
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.11;
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
41
上电现象:
模块移植成功代码:
链接:https://pan.baidu.com/s/1zTC7CuOYCD9DVVJn-VvYPw?pwd=LCKF 提取码:LCKF