Skip to content

Commit 846f01b

Browse files
authored
Merge pull request #3113 from ansonhe97/main
ADD: Added Wio Terminal's functional pins and LCD driver to board init
2 parents 632cd9f + 36ef347 commit 846f01b

File tree

2 files changed

+118
-3
lines changed

2 files changed

+118
-3
lines changed

ports/atmel-samd/boards/seeeduino_wio_terminal/board.c

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,85 @@
2727
#include "boards/board.h"
2828
#include "mpconfigboard.h"
2929
#include "hal/include/hal_gpio.h"
30+
#include "shared-bindings/busio/SPI.h"
31+
#include "shared-bindings/displayio/FourWire.h"
32+
#include "shared-module/displayio/__init__.h"
33+
#include "shared-module/displayio/mipi_constants.h"
34+
35+
displayio_fourwire_obj_t board_display_obj;
36+
37+
uint8_t display_init_sequence[] = {
38+
0x01, 0x80, 0x80, // Software reset then delay 0x80 (128ms)
39+
0xEF, 0x03, 0x03, 0x80, 0x02,
40+
0xCF, 0x03, 0x00, 0xC1, 0x30,
41+
0xED, 0x04, 0x64, 0x03, 0x12, 0x81,
42+
0xE8, 0x03, 0x85, 0x00, 0x78,
43+
0xCB, 0x05, 0x39, 0x2C, 0x00, 0x34, 0x02,
44+
0xF7, 0x01, 0x20,
45+
0xEA, 0x02, 0x00, 0x00,
46+
0xc0, 0x01, 0x23, // Power control VRH[5:0]
47+
0xc1, 0x01, 0x10, // Power control SAP[2:0];BT[3:0]
48+
0xc5, 0x02, 0x3e, 0x28, // VCM control
49+
0xc7, 0x01, 0x86, // VCM control2
50+
0x36, 0x01, 0x38, // Memory Access Control
51+
0x37, 0x01, 0x00, // Vertical scroll zero
52+
0x3a, 0x01, 0x55, // COLMOD: Pixel Format Set
53+
0xb1, 0x02, 0x00, 0x18, // Frame Rate Control (In Normal Mode/Full Colors)
54+
0xb6, 0x03, 0x08, 0x82, 0x27, // Display Function Control
55+
0xF2, 0x01, 0x00, // 3Gamma Function Disable
56+
0x26, 0x01, 0x01, // Gamma curve selected
57+
0xe0, 0x0f, 0x0F, 0x31, 0x2B, 0x0C, 0x0E, 0x08, 0x4E, 0xF1, 0x37, 0x07, 0x10, 0x03, 0x0E, 0x09, 0x00, // Set Gamma
58+
0xe1, 0x0f, 0x00, 0x0E, 0x14, 0x03, 0x11, 0x07, 0x31, 0xC1, 0x48, 0x08, 0x0F, 0x0C, 0x31, 0x36, 0x0F, // Set Gamma
59+
0x11, 0x80, 0x78, // Exit Sleep then delay 0x78 (120ms)
60+
0x29, 0x80, 0x78, // Display on then delay 0x78 (120ms)
61+
};
3062

3163
void board_init(void) {
64+
busio_spi_obj_t* spi = &displays[0].fourwire_bus.inline_bus;
65+
common_hal_busio_spi_construct(spi, &pin_PB20, &pin_PB19, NULL);
66+
common_hal_busio_spi_never_reset(spi);
67+
68+
displayio_fourwire_obj_t* bus = &displays[0].fourwire_bus;
69+
bus->base.type = &displayio_fourwire_type;
70+
common_hal_displayio_fourwire_construct(bus,
71+
spi,
72+
&pin_PC06, // TFT_DC Command or data
73+
&pin_PB21, // TFT_CS Chip select
74+
&pin_PC07, // TFT_RST Reset
75+
60000000, // Baudrate
76+
0, // Polarity
77+
0); // Phase
78+
79+
displayio_display_obj_t* display = &displays[0].display;
80+
display->base.type = &displayio_display_type;
81+
common_hal_displayio_display_construct(display,
82+
bus,
83+
320, // Width
84+
240, // Height
85+
0, // column start
86+
0, // row start
87+
180, // rotation
88+
16, // Color depth
89+
false, // Grayscale
90+
false, // pixels in a byte share a row. Only valid for depths < 8
91+
1, // bytes per cell. Only valid for depths < 8
92+
false, // reverse_pixels_in_byte. Only valid for depths < 8
93+
true, // reverse_pixels_in_word
94+
MIPI_COMMAND_SET_COLUMN_ADDRESS, // Set column command
95+
MIPI_COMMAND_SET_PAGE_ADDRESS, // Set row command
96+
MIPI_COMMAND_WRITE_MEMORY_START, // Write memory command
97+
0x37, // set vertical scroll command
98+
display_init_sequence,
99+
sizeof(display_init_sequence),
100+
&pin_PC05, // backlight pin
101+
NO_BRIGHTNESS_COMMAND,
102+
1.0f, // brightness (ignored)
103+
true, // auto_brightness
104+
false, // single_byte_bounds
105+
false, // data_as_commands
106+
true, // auto_refresh
107+
60, // native_frames_per_second
108+
true); // backlight_on_high
32109
}
33110

34111
bool board_requests_safe_mode(void) {

ports/atmel-samd/boards/seeeduino_wio_terminal/pins.c

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,10 @@ STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
3333
{ MP_ROM_QSTR(MP_QSTR_RX), MP_ROM_PTR(&pin_PB27) },
3434

3535
// SPI pins
36-
{ MP_ROM_QSTR(MP_QSTR_MOSI), MP_ROM_PTR(&pin_PA02) },
37-
{ MP_ROM_QSTR(MP_QSTR_SCK), MP_ROM_PTR(&pin_PA03) },
38-
{ MP_ROM_QSTR(MP_QSTR_MISO), MP_ROM_PTR(&pin_PA00) },
36+
{ MP_ROM_QSTR(MP_QSTR_MOSI), MP_ROM_PTR(&pin_PB02) },
37+
{ MP_ROM_QSTR(MP_QSTR_SCK), MP_ROM_PTR(&pin_PB03) },
38+
{ MP_ROM_QSTR(MP_QSTR_MISO), MP_ROM_PTR(&pin_PB00) },
39+
{ MP_ROM_QSTR(MP_QSTR_CS), MP_ROM_PTR(&pin_PB01) },
3940

4041
// I2C pins
4142
{ MP_ROM_QSTR(MP_QSTR_SCL), MP_ROM_PTR(&pin_PA16) },
@@ -44,6 +45,43 @@ STATIC const mp_rom_map_elem_t board_global_dict_table[] = {
4445
// LED pins
4546
{ MP_ROM_QSTR(MP_QSTR_LED), MP_ROM_PTR(&pin_PA15) }, // status
4647

48+
// LCD Display
49+
{ MP_OBJ_NEW_QSTR(MP_QSTR_TFT_MISO), MP_ROM_PTR(&pin_PB18) },
50+
{ MP_OBJ_NEW_QSTR(MP_QSTR_TFT_MOSI), MP_ROM_PTR(&pin_PB19) },
51+
{ MP_OBJ_NEW_QSTR(MP_QSTR_TFT_SCK), MP_ROM_PTR(&pin_PB20) },
52+
{ MP_ROM_QSTR(MP_QSTR_TFT_CS), MP_ROM_PTR(&pin_PB21) },
53+
{ MP_ROM_QSTR(MP_QSTR_TFT_DC), MP_ROM_PTR(&pin_PC06) },
54+
{ MP_ROM_QSTR(MP_QSTR_TFT_BACKLIGHT), MP_ROM_PTR(&pin_PC05) },
55+
{ MP_ROM_QSTR(MP_QSTR_TFT_RESET), MP_ROM_PTR(&pin_PC07) },
56+
57+
// SD Card
58+
{ MP_OBJ_NEW_QSTR(MP_QSTR_SD_MISO), MP_ROM_PTR(&pin_PC18) },
59+
{ MP_OBJ_NEW_QSTR(MP_QSTR_SD_MOSI), MP_ROM_PTR(&pin_PC16) },
60+
{ MP_OBJ_NEW_QSTR(MP_QSTR_SD_SCK), MP_ROM_PTR(&pin_PC17) },
61+
{ MP_ROM_QSTR(MP_QSTR_SD_CS), MP_ROM_PTR(&pin_PC19) },
62+
{ MP_ROM_QSTR(MP_QSTR_SD_DET), MP_ROM_PTR(&pin_PC21) },
63+
64+
// Switch
65+
{ MP_OBJ_NEW_QSTR(MP_QSTR_SWITCH_UP), MP_ROM_PTR(&pin_PD20) },
66+
{ MP_OBJ_NEW_QSTR(MP_QSTR_SWITCH_LEFT), MP_ROM_PTR(&pin_PD12) },
67+
{ MP_OBJ_NEW_QSTR(MP_QSTR_SWITCH_RIGHT), MP_ROM_PTR(&pin_PD09) },
68+
{ MP_OBJ_NEW_QSTR(MP_QSTR_SWITCH_DOWN), MP_ROM_PTR(&pin_PD08) },
69+
{ MP_OBJ_NEW_QSTR(MP_QSTR_SWITCH_PRESS), MP_ROM_PTR(&pin_PD10) },
70+
71+
// Button
72+
{ MP_OBJ_NEW_QSTR(MP_QSTR_BUTTON_1), MP_ROM_PTR(&pin_PC26) },
73+
{ MP_OBJ_NEW_QSTR(MP_QSTR_BUTTON_2), MP_ROM_PTR(&pin_PC27) },
74+
{ MP_OBJ_NEW_QSTR(MP_QSTR_BUTTON_3), MP_ROM_PTR(&pin_PC28) },
75+
76+
// Special named pins
77+
{ MP_OBJ_NEW_QSTR(MP_QSTR_LIGHT), MP_ROM_PTR(&pin_PD01) },
78+
{ MP_OBJ_NEW_QSTR(MP_QSTR_BUZZER), MP_ROM_PTR(&pin_PD11) },
79+
{ MP_OBJ_NEW_QSTR(MP_QSTR_IR), MP_ROM_PTR(&pin_PB31) },
80+
{ MP_OBJ_NEW_QSTR(MP_QSTR_MIC), MP_ROM_PTR(&pin_PC30) },
81+
{ MP_ROM_QSTR(MP_QSTR_GYROSCOPE_SCL), MP_ROM_PTR(&pin_PA12) },
82+
{ MP_ROM_QSTR(MP_QSTR_GYROSCOPE_SDA), MP_ROM_PTR(&pin_PA13) },
83+
{ MP_ROM_QSTR(MP_QSTR_GYROSCOPE_INT), MP_ROM_PTR(&pin_PC21) },
84+
4785
// Comm objects
4886
{ MP_ROM_QSTR(MP_QSTR_I2C), MP_ROM_PTR(&board_i2c_obj) },
4987
{ MP_ROM_QSTR(MP_QSTR_SPI), MP_ROM_PTR(&board_spi_obj) },

0 commit comments

Comments
 (0)