Skip to content

Commit 2a92cf8

Browse files
committed
ADD: Added LCD driver to board init
1 parent 49aacc8 commit 2a92cf8

File tree

1 file changed

+77
-0
lines changed
  • ports/atmel-samd/boards/seeeduino_wio_terminal

1 file changed

+77
-0
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) {

0 commit comments

Comments
 (0)