Skip to content

Commit 718f9fc

Browse files
authored
Merge pull request #6037 from erongd/lilygo_t_display_rp2040
Add support for lilygo_t_display_rp2040 board
2 parents 827eaeb + 91380f1 commit 718f9fc

File tree

5 files changed

+230
-0
lines changed

5 files changed

+230
-0
lines changed
Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
/*
2+
* This file is part of the MicroPython project, http://micropython.org/
3+
*
4+
* The MIT License (MIT)
5+
*
6+
* Copyright (c) 2021 Scott Shawcroft for Adafruit Industries
7+
*
8+
* Permission is hereby granted, free of charge, to any person obtaining a copy
9+
* of this software and associated documentation files (the "Software"), to deal
10+
* in the Software without restriction, including without limitation the rights
11+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
* copies of the Software, and to permit persons to whom the Software is
13+
* furnished to do so, subject to the following conditions:
14+
*
15+
* The above copyright notice and this permission notice shall be included in
16+
* all copies or substantial portions of the Software.
17+
*
18+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24+
* THE SOFTWARE.
25+
*/
26+
27+
#include "supervisor/board.h"
28+
#include "mpconfigboard.h"
29+
#include "shared-bindings/microcontroller/Pin.h"
30+
#include "shared-module/displayio/__init__.h"
31+
#include "shared-module/displayio/mipi_constants.h"
32+
33+
#define DELAY 0x80
34+
#define LCD_POWER 22
35+
36+
// display init sequence according to LilyGO example app
37+
uint8_t display_init_sequence[] = {
38+
// sw reset
39+
0x01, 0 | DELAY, 150,
40+
// sleep out
41+
0x11, 0 | DELAY, 255,
42+
// normal display mode on
43+
0x13, 0,
44+
// display and color format settings
45+
0x36, 1, 0x08,
46+
0xB6, 2, 0x0A, 0x82,
47+
0x3A, 1 | DELAY, 0x55, 10,
48+
// ST7789V frame rate setting
49+
0xB2, 5, 0x0C, 0x0C, 0x00, 0x33, 0x33,
50+
// voltages: VGH / VGL
51+
0xB7, 1, 0x35,
52+
// ST7789V power setting
53+
0xBB, 1, 0x28,
54+
0xC0, 1, 0x0C,
55+
0xC2, 2, 0x01, 0xFF,
56+
0xC3, 1, 0x10,
57+
0xC4, 1, 0x20,
58+
0xC6, 1, 0x0F,
59+
0xD0, 2, 0xA4, 0xA1,
60+
// ST7789V gamma setting
61+
0xE0, 14, 0xD0, 0x00, 0x02, 0x07, 0x0A, 0x28, 0x32, 0x44, 0x42, 0x06, 0x0E, 0x12, 0x14, 0x17,
62+
0xE1, 14, 0xD0, 0x00, 0x02, 0x07, 0x0A, 0x28, 0x31, 0x54, 0x47, 0x0E, 0x1C, 0x17, 0x1B, 0x1E,
63+
0x21, 0,
64+
// display on
65+
0x29, 0 | DELAY, 255,
66+
};
67+
68+
static void display_init(void) {
69+
displayio_fourwire_obj_t *bus = &allocate_display_bus()->fourwire_bus;
70+
busio_spi_obj_t *spi = &bus->inline_bus;
71+
72+
common_hal_busio_spi_construct(
73+
spi,
74+
&pin_GPIO2, // CLK
75+
&pin_GPIO3, // MOSI
76+
NULL, // MISO not connected
77+
false); // Not half-duplex
78+
79+
common_hal_busio_spi_never_reset(spi);
80+
81+
bus->base.type = &displayio_fourwire_type;
82+
83+
common_hal_displayio_fourwire_construct(
84+
bus,
85+
spi,
86+
&pin_GPIO1, // DC
87+
&pin_GPIO5, // CS
88+
NULL, // RST (Reset pin tie to 0, do not set here)
89+
40000000, // baudrate
90+
1, // polarity
91+
0 // phase
92+
);
93+
94+
displayio_display_obj_t *display = &allocate_display()->display;
95+
display->base.type = &displayio_display_type;
96+
97+
common_hal_displayio_display_construct(
98+
display,
99+
bus,
100+
240, // width (after rotation)
101+
135, // height (after rotation)
102+
52, // column start
103+
40, // row start
104+
90, // rotation
105+
16, // color depth
106+
false, // grayscale
107+
false, // pixels in a byte share a row. Only valid for depths < 8
108+
1, // bytes per cell. Only valid for depths < 8
109+
false, // reverse_pixels_in_byte. Only valid for depths < 8
110+
true, // reverse_pixels_in_word
111+
MIPI_COMMAND_SET_COLUMN_ADDRESS, // set column command
112+
MIPI_COMMAND_SET_PAGE_ADDRESS, // set row command
113+
MIPI_COMMAND_WRITE_MEMORY_START, // write memory command
114+
display_init_sequence,
115+
sizeof(display_init_sequence),
116+
&pin_GPIO4, // backlight pin
117+
NO_BRIGHTNESS_COMMAND,
118+
1.0f, // brightness (ignored)
119+
false, // auto_brightness
120+
false, // single_byte_bounds
121+
false, // data_as_commands
122+
true, // auto_refresh
123+
60, // native_frames_per_second
124+
true, // backlight_on_high
125+
false // SH1107_addressing
126+
);
127+
128+
common_hal_never_reset_pin(&pin_GPIO4); // backlight pin
129+
}
130+
131+
void board_init(void) {
132+
// Pin 22 has to be pulled high to turn on the LCD
133+
const uint PWR_PIN = LCD_POWER;
134+
gpio_init(PWR_PIN);
135+
gpio_set_dir(PWR_PIN, GPIO_OUT);
136+
gpio_put(PWR_PIN, 1);
137+
common_hal_never_reset_pin(&pin_GPIO22);
138+
139+
// Display
140+
display_init();
141+
}
142+
143+
bool board_requests_safe_mode(void) {
144+
return false;
145+
}
146+
147+
void reset_board(void) {
148+
}
149+
150+
void board_deinit(void) {
151+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#define MICROPY_HW_BOARD_NAME "LILYGO T-DISPLAY"
2+
#define MICROPY_HW_MCU_NAME "rp2040"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
USB_VID = 0x1209
2+
USB_PID = 0x2023
3+
USB_PRODUCT = "T-Display"
4+
USB_MANUFACTURER = "Lilygo"
5+
6+
CHIP_VARIANT = RP2040
7+
CHIP_FAMILY = rp2
8+
9+
EXTERNAL_FLASH_DEVICES = "W25Q32JVxQ"
10+
11+
CIRCUITPY__EVE = 1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// Put board-specific pico-sdk definitions here. This file must exist.
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
#include "shared-bindings/board/__init__.h"
2+
#include "shared-module/displayio/__init__.h"
3+
4+
STATIC const mp_rom_map_elem_t board_module_globals_table[] = {
5+
CIRCUITPYTHON_BOARD_DICT_STANDARD_ITEMS
6+
7+
{ MP_ROM_QSTR(MP_QSTR_TX), MP_ROM_PTR(&pin_GPIO1) },
8+
{ MP_ROM_QSTR(MP_QSTR_GP1), MP_ROM_PTR(&pin_GPIO1) },
9+
10+
{ MP_ROM_QSTR(MP_QSTR_RX), MP_ROM_PTR(&pin_GPIO2) },
11+
{ MP_ROM_QSTR(MP_QSTR_GP2), MP_ROM_PTR(&pin_GPIO2) },
12+
13+
{ MP_ROM_QSTR(MP_QSTR_BUTTON_L), MP_ROM_PTR(&pin_GPIO6) },
14+
{ MP_ROM_QSTR(MP_QSTR_GP6), MP_ROM_PTR(&pin_GPIO6) },
15+
16+
{ MP_ROM_QSTR(MP_QSTR_BUTTON_R), MP_ROM_PTR(&pin_GPIO6) },
17+
{ MP_ROM_QSTR(MP_QSTR_GP7), MP_ROM_PTR(&pin_GPIO7) },
18+
19+
{ MP_ROM_QSTR(MP_QSTR_GP8), MP_ROM_PTR(&pin_GPIO8) },
20+
{ MP_ROM_QSTR(MP_QSTR_GP9), MP_ROM_PTR(&pin_GPIO9) },
21+
22+
{ MP_ROM_QSTR(MP_QSTR_SCK), MP_ROM_PTR(&pin_GPIO10) },
23+
{ MP_ROM_QSTR(MP_QSTR_GP10), MP_ROM_PTR(&pin_GPIO10) },
24+
25+
{ MP_ROM_QSTR(MP_QSTR_MOSI), MP_ROM_PTR(&pin_GPIO11) },
26+
{ MP_ROM_QSTR(MP_QSTR_GP11), MP_ROM_PTR(&pin_GPIO11) },
27+
28+
{ MP_ROM_QSTR(MP_QSTR_MISO), MP_ROM_PTR(&pin_GPIO12) },
29+
{ MP_ROM_QSTR(MP_QSTR_GP12), MP_ROM_PTR(&pin_GPIO12) },
30+
31+
{ MP_ROM_QSTR(MP_QSTR_GP13), MP_ROM_PTR(&pin_GPIO13) },
32+
33+
{ MP_ROM_QSTR(MP_QSTR_SDA), MP_ROM_PTR(&pin_GPIO14) },
34+
{ MP_ROM_QSTR(MP_QSTR_GP14), MP_ROM_PTR(&pin_GPIO14) },
35+
36+
{ MP_ROM_QSTR(MP_QSTR_SCL), MP_ROM_PTR(&pin_GPIO15) },
37+
{ MP_ROM_QSTR(MP_QSTR_GP15), MP_ROM_PTR(&pin_GPIO15) },
38+
39+
{ MP_ROM_QSTR(MP_QSTR_GP16), MP_ROM_PTR(&pin_GPIO16) },
40+
41+
{ MP_ROM_QSTR(MP_QSTR_GP18), MP_ROM_PTR(&pin_GPIO18) },
42+
43+
{ MP_ROM_QSTR(MP_QSTR_GP21), MP_ROM_PTR(&pin_GPIO21) },
44+
45+
{ MP_ROM_QSTR(MP_QSTR_TFT_POWER), MP_ROM_PTR(&pin_GPIO22) },
46+
{ MP_ROM_QSTR(MP_QSTR_GP22), MP_ROM_PTR(&pin_GPIO22) },
47+
48+
{ MP_ROM_QSTR(MP_QSTR_LED), MP_ROM_PTR(&pin_GPIO25) },
49+
{ MP_ROM_QSTR(MP_QSTR_GP25), MP_ROM_PTR(&pin_GPIO25) },
50+
51+
// 1.14 inch LCD ST7789
52+
{ MP_ROM_QSTR(MP_QSTR_LCD_MOSI), MP_ROM_PTR(&pin_GPIO3) },
53+
{ MP_ROM_QSTR(MP_QSTR_LCD_CLK), MP_ROM_PTR(&pin_GPIO2) },
54+
{ MP_ROM_QSTR(MP_QSTR_LCD_CS), MP_ROM_PTR(&pin_GPIO5) },
55+
{ MP_ROM_QSTR(MP_QSTR_LCD_RESET), MP_ROM_PTR(&pin_GPIO0) },
56+
{ MP_ROM_QSTR(MP_QSTR_LCD_BACKLIGHT), MP_ROM_PTR(&pin_GPIO4) },
57+
{ MP_ROM_QSTR(MP_QSTR_LCD_DC), MP_ROM_PTR(&pin_GPIO1) },
58+
{ MP_ROM_QSTR(MP_QSTR_DISPLAY), MP_ROM_PTR(&displays[0].display) },
59+
60+
{ MP_ROM_QSTR(MP_QSTR_VOLTAGE_MONITOR), MP_ROM_PTR(&pin_GPIO29) },
61+
62+
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_obj) },
63+
{ MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&board_spi_obj) },
64+
};
65+
MP_DEFINE_CONST_DICT(board_module_globals, board_module_globals_table);

0 commit comments

Comments
 (0)