模块来源
采购链接:
4.0 寸 tft lcd 液晶屏 320*480 4.0lcd 彩色液晶屏 ili9488 驱动并口
资料下载链接:
https://pan.baidu.com/s/1DWdbVY9WcOLYKITB_zdjFg
资料提取码:8888
规格参数
资料来源看 1.14.1 的资料下载链接。 以下信息见厂家资料屏幕规格书屏幕规格书
工作电压: 3.3V
工作电流: 120MA
模块尺寸: 62.0(H) x 106.57(V) MM
像素大小: 320(H) x 480(V)RGB
驱动芯片: ST7789V
通信协议: 16 位并口
管脚数量: 24 Pin(2.54mm 间距排针)
移植过程
我们的目标是将例程移植至天空星 STM32F407 上。按照以下步骤,即可完成移植。
- 将源码导入工程;
- 根据编译报错处进行粗改;
- 修改引脚配置;
- 修改时序配置;
- 移植验证。
查看资料
打开厂家资料例程
在 main.c 文件发现对屏幕的初始化配置函数为 LCD_Init(); ,该函数里包含了对屏幕引脚的配置、对屏幕显示方式的配置。
我们主要修改的是引脚的初始化与时序的修改。
移植至工程
将厂家资料路径下的【LCD】文件夹和 User 文件夹下的 GUI.c、GUI.h、test.c 和 test.h,复制到自己的工程中。自己的工程至少需要有毫秒级延时函数。(工程可以参考入门手册空白工程下载)
打开自己的工程,将我们刚刚复制过来的文件导入.c 和.h 文件。
将 gui.h 文件下的 sys.h 改为 stm32f4xx.h 还要将lcd.h文件下的 sys.h 改为 stm32f4xx.h ,最后在 test.h 文件中添加 stm32f4xx.h
(在左边将 lcd.c、GUI.c 和 test.c 的工程目录展开,就发现有相关的头文件)
将 lcd.c、gui.c 和 test.c文件下的 delay.h 改为 board.h
分别在 lcd.h、gui.h和test.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
再编译发现只剩下 LCD 引脚初始化的内容报错,接下来我们要进行引脚选择。
引脚选择
该屏幕需要设置 24 个接口,具体接口说明见 文件规格书。
因为使用的是软件并行口,所以除了特殊引脚外,其他引脚都可以设置。时序部分厂家已经完成,我们只需要将引脚和延时配置好即可。所以对应接入的屏幕引脚请按照你的需要。这里选择的引脚见16 位并行接线
选择好引脚后,进入工程开始编写屏幕引脚初始化代码。
为了方便后续移植,我在 lcd.h 处宏定义了每一个引脚,后续根据需要进行修改即可。
//-----------------LCD端口移植----------------
#define RCC_LCD1 RCC_AHB1Periph_GPIOA
#define RCC_LCD2 RCC_AHB1Periph_GPIOB
#define RCC_LCD3 RCC_AHB1Periph_GPIOC
#define RCC_LCD4 RCC_AHB1Periph_GPIOD
#define RCC_LCD5 RCC_AHB1Periph_GPIOE
//RD
#define PORT_LCD_RD GPIOA
#define GPIO_LCD_RD GPIO_Pin_3
//WR
#define PORT_LCD_WR GPIOA
#define GPIO_LCD_WR GPIO_Pin_2
//CS
#define PORT_LCD_CS GPIOA
#define GPIO_LCD_CS GPIO_Pin_0
//DC/RS
#define PORT_LCD_DC GPIOA
#define GPIO_LCD_DC GPIO_Pin_1
//RES
#define PORT_LCD_RES GPIOA
#define GPIO_LCD_RES GPIO_Pin_4
//BLK/BL
#define PORT_LCD_BLK GPIOD
#define GPIO_LCD_BLK GPIO_Pin_14
//DB0
#define PORT_LCD_DB0 GPIOA
#define GPIO_LCD_DB0 GPIO_Pin_5
//DB1
#define PORT_LCD_DB1 GPIOA
#define GPIO_LCD_DB1 GPIO_Pin_6
//DB2
#define PORT_LCD_DB2 GPIOA
#define GPIO_LCD_DB2 GPIO_Pin_7
//DB3
#define PORT_LCD_DB3 GPIOE
#define GPIO_LCD_DB3 GPIO_Pin_7
//DB4
#define PORT_LCD_DB4 GPIOE
#define GPIO_LCD_DB4 GPIO_Pin_8
//DB5
#define PORT_LCD_DB5 GPIOE
#define GPIO_LCD_DB5 GPIO_Pin_9
//DB6
#define PORT_LCD_DB6 GPIOE
#define GPIO_LCD_DB6 GPIO_Pin_10
//DB7
#define PORT_LCD_DB7 GPIOE
#define GPIO_LCD_DB7 GPIO_Pin_11
//DB8
#define PORT_LCD_DB8 GPIOE
#define GPIO_LCD_DB8 GPIO_Pin_12
//DB9
#define PORT_LCD_DB9 GPIOE
#define GPIO_LCD_DB9 GPIO_Pin_13
//DB10
#define PORT_LCD_DB10 GPIOE
#define GPIO_LCD_DB10 GPIO_Pin_14
//DB11
#define PORT_LCD_DB11 GPIOE
#define GPIO_LCD_DB11 GPIO_Pin_15
//DB12
#define PORT_LCD_DB12 GPIOB
#define GPIO_LCD_DB12 GPIO_Pin_10
//DB13
#define PORT_LCD_DB13 GPIOB
#define GPIO_LCD_DB13 GPIO_Pin_11
//DB14
#define PORT_LCD_DB14 GPIOB
#define GPIO_LCD_DB14 GPIO_Pin_12
//DB15
#define PORT_LCD_DB15 GPIOB
#define GPIO_LCD_DB15 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
将 lcd.c 源代码中新添加一个函数 **void LCD_GPIO_Init(void)**为如下代码。
void LCD_GPIO_Init(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
RCC_AHB1PeriphClockCmd(RCC_LCD1|RCC_LCD2|RCC_LCD3|RCC_LCD4|RCC_LCD5, ENABLE);
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT;
GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
GPIO_Init(GPIOA, &GPIO_InitStructure); //GPIOA
GPIO_SetBits(GPIOA,GPIO_Pin_All);
GPIO_Init(GPIOB, &GPIO_InitStructure); //GPIOB
GPIO_SetBits(GPIOB,GPIO_Pin_All);
GPIO_Init(GPIOC, &GPIO_InitStructure); //GPIOC
GPIO_SetBits(GPIOC,GPIO_Pin_All);
GPIO_Init(GPIOD, &GPIO_InitStructure); //GPIOD
GPIO_SetBits(GPIOD,GPIO_Pin_All);
GPIO_Init(GPIOE, &GPIO_InitStructure); //GPIOE
GPIO_SetBits(GPIOE,GPIO_Pin_All);
}
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
然后修改 lcd.c 文件中的 void LCD_Init(void) 函数,将其修改为下面的形式
//初始化lcd
void LCD_Init(void)
{
LCD_GPIO_Init();
LCD_RST_CLR;
delay_ms(200);
LCD_RST_SET;
delay_ms(50);
Set_Dir(DFT_SCAN_DIR);
LCD_WR_REG(0xE0);
LCD_WR_DATA(0x00);
LCD_WR_DATA(0x07);
LCD_WR_DATA(0x0f);
LCD_WR_DATA(0x0D);
LCD_WR_DATA(0x1B);
LCD_WR_DATA(0x0A);
LCD_WR_DATA(0x3c);
LCD_WR_DATA(0x78);
LCD_WR_DATA(0x4A);
LCD_WR_DATA(0x07);
LCD_WR_DATA(0x0E);
LCD_WR_DATA(0x09);
LCD_WR_DATA(0x1B);
LCD_WR_DATA(0x1e);
LCD_WR_DATA(0x0f);
LCD_WR_REG(0xE1);
LCD_WR_DATA(0x00);
LCD_WR_DATA(0x22);
LCD_WR_DATA(0x24);
LCD_WR_DATA(0x06);
LCD_WR_DATA(0x12);
LCD_WR_DATA(0x07);
LCD_WR_DATA(0x36);
LCD_WR_DATA(0x47);
LCD_WR_DATA(0x47);
LCD_WR_DATA(0x06);
LCD_WR_DATA(0x0a);
LCD_WR_DATA(0x07);
LCD_WR_DATA(0x30);
LCD_WR_DATA(0x37);
LCD_WR_DATA(0x0f);
LCD_WR_REG(0xC0);
LCD_WR_DATA(0x10);
LCD_WR_DATA(0x10);
LCD_WR_REG(0xC1);
LCD_WR_DATA(0x41);
LCD_WR_REG(0xC5);
LCD_WR_DATA(0x00);
LCD_WR_DATA(0x22);
LCD_WR_DATA(0x80);
LCD_WR_REG(0x36); // Memory Access Control
if(DFT_SCAN_DIR==L2R_U2D)LCD_WR_DATA(0x48);
else if(DFT_SCAN_DIR==R2L_D2U)LCD_WR_DATA(0x88);
else if(DFT_SCAN_DIR==U2D_R2L)LCD_WR_DATA(0x28);
else LCD_WR_DATA(0xE8);
LCD_WR_REG(0x3A); //Interface Mode Control,
LCD_WR_DATA(0x55);
LCD_WR_REG(0XB0); //Interface Mode Control
LCD_WR_DATA(0x00);
LCD_WR_REG(0xB1); //Frame rate 70HZ
LCD_WR_DATA(0xB0);
LCD_WR_DATA(0x11);
LCD_WR_REG(0xB4);
LCD_WR_DATA(0x02);
LCD_WR_REG(0xB6); //RGB/MCU Interface Control
LCD_WR_DATA(0x02);
LCD_WR_DATA(0x02);
LCD_WR_REG(0xB7);
LCD_WR_DATA(0xC6);
LCD_WR_REG(0xE9);
LCD_WR_DATA(0x00);
LCD_WR_REG(0XF7);
LCD_WR_DATA(0xA9);
LCD_WR_DATA(0x51);
LCD_WR_DATA(0x2C);
LCD_WR_DATA(0x82);
LCD_WR_REG(0x11);
delay_ms(120);
LCD_WR_REG(0x29);
LCD_LED(1);
}
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
将 lcd.h 中的LCD 端口定义 宏,修改为:
//////////////////////////////////////////////////////////////////////////////////
//-----------------LCD端口定义----------------
#define LCD_LED(x) GPIO_WriteBit(PORT_LCD_BLK,GPIO_LCD_BLK, x?1:0)
#define LCD_CS_SET GPIO_WriteBit(PORT_LCD_CS, GPIO_LCD_CS, 1)//CS
#define LCD_RS_SET GPIO_WriteBit(PORT_LCD_DC, GPIO_LCD_DC, 1)//DC
#define LCD_WR_SET GPIO_WriteBit(PORT_LCD_WR, GPIO_LCD_WR, 1)//WR
#define LCD_RD_SET GPIO_WriteBit(PORT_LCD_RD, GPIO_LCD_RD, 1)//RD
#define LCD_RST_SET GPIO_WriteBit(PORT_LCD_RES, GPIO_LCD_RES, 1)//RES
#define LCD_CS_CLR GPIO_WriteBit(PORT_LCD_CS, GPIO_LCD_CS, 0)//CS
#define LCD_RS_CLR GPIO_WriteBit(PORT_LCD_DC, GPIO_LCD_DC, 0)//DC
#define LCD_WR_CLR GPIO_WriteBit(PORT_LCD_WR, GPIO_LCD_WR, 0)//WR
#define LCD_RD_CLR GPIO_WriteBit(PORT_LCD_RD, GPIO_LCD_RD, 0)//RD
#define LCD_RST_CLR GPIO_WriteBit(PORT_LCD_RES, GPIO_LCD_RES, 0)//RES
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_DB15(x) { GPIO_WriteBit( PORT_LCD_DB15, GPIO_LCD_DB15, x); }
#define BIT_DB14(x) { GPIO_WriteBit( PORT_LCD_DB14, GPIO_LCD_DB14, x); }
#define BIT_DB13(x) { GPIO_WriteBit( PORT_LCD_DB13, GPIO_LCD_DB13, x); }
#define BIT_DB12(x) { GPIO_WriteBit( PORT_LCD_DB12, GPIO_LCD_DB12, x); }
#define BIT_DB11(x) { GPIO_WriteBit( PORT_LCD_DB11, GPIO_LCD_DB11, x); }
#define BIT_DB10(x) { GPIO_WriteBit( PORT_LCD_DB10, GPIO_LCD_DB10, x); }
#define BIT_DB9(x) { GPIO_WriteBit( PORT_LCD_DB9, GPIO_LCD_DB9, x); }
#define BIT_DB8(x) { GPIO_WriteBit( PORT_LCD_DB8, GPIO_LCD_DB8, x); }
#define BIT_DB7(x) { GPIO_WriteBit( PORT_LCD_DB7, GPIO_LCD_DB7, x); }
#define BIT_DB6(x) { GPIO_WriteBit( PORT_LCD_DB6, GPIO_LCD_DB6, x); }
#define BIT_DB5(x) { GPIO_WriteBit( PORT_LCD_DB5, GPIO_LCD_DB5, x); }
#define BIT_DB4(x) { GPIO_WriteBit( PORT_LCD_DB4, GPIO_LCD_DB4, x); }
#define BIT_DB3(x) { GPIO_WriteBit( PORT_LCD_DB3, GPIO_LCD_DB3, x); }
#define BIT_DB2(x) { GPIO_WriteBit( PORT_LCD_DB2, GPIO_LCD_DB2, x); }
#define BIT_DB1(x) { GPIO_WriteBit( PORT_LCD_DB1, GPIO_LCD_DB1, x); }
#define BIT_DB0(x) { GPIO_WriteBit( PORT_LCD_DB0, GPIO_LCD_DB0, x); }
#define DATAOUT(dat){ \
BIT_DB15( (dat>>15)&0x01 ); \
BIT_DB14( (dat>>14)&0x01 ); \
BIT_DB13( (dat>>13)&0x01 ); \
BIT_DB12( (dat>>12)&0x01 ); \
BIT_DB11( (dat>>11)&0x01 ); \
BIT_DB10( (dat>>10)&0x01 ); \
BIT_DB9( (dat>>9)&0x01 ); \
BIT_DB8( (dat>>8)&0x01 ); \
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 ); \
}
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
将下方的注释
将读取颜色的函数注释。
打开 test.c 文件将 void Touch_Test(void) 函数注释掉
到这里就移植完成了,请移步到 11.4 节进行移植验证。
移植验证
在 main.c 中输入代码如下
/*
* 立创开发板软硬件资料与相关扩展板软硬件资料官网全部开源
* 开发板官网:www.lckfb.com
* 技术支持常驻论坛,任何技术问题欢迎随时交流学习
* 立创论坛:https://oshwhub.com/forum
* 关注bilibili账号:【立创开发板】,掌握我们的最新动态!
* 不靠卖板赚钱,以培养中国工程师为己任
*
Change Logs:
* Date Author Notes
* 2024-03-14 LCKFB-LP first version
*/
#include "board.h"
#include "bsp_uart.h"
#include <stdio.h>
#include "LCD.h"
#include "test.h"
int main(void)
{
board_init();
uart1_init(115200U);
LCD_Init();
LCD_Fill(0,0,320,480,YELLOW);
while(1)
{
main_test();
Test_Color();
Test_FillRec();
Test_Circle();
English_Font_test();
Chinese_Font_test();
Pic_test();
}
}
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
代码下载
链接在开发板介绍
章节的离线资料下载!!