diff options
author | Nick Brassel <nick@tzarc.org> | 2022-06-21 10:56:47 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 10:56:47 +1000 |
commit | 589e756e9838d9c9ba30e5421b98c29fae2f2d62 (patch) | |
tree | e478b4b7e27d1b6c148ba18653ed12dd93e702a9 /keyboards/tzarc/djinn | |
parent | 2fb24c0298cbed7bd1fb64b613228cd2a9b0d08f (diff) |
Fixup SPI mode 3 => 0 on tzarc/djinn. (#17440)
Diffstat (limited to 'keyboards/tzarc/djinn')
-rw-r--r-- | keyboards/tzarc/djinn/djinn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/tzarc/djinn/djinn.c b/keyboards/tzarc/djinn/djinn.c index 41155a6584..70e011218f 100644 --- a/keyboards/tzarc/djinn/djinn.c +++ b/keyboards/tzarc/djinn/djinn.c @@ -70,7 +70,7 @@ void keyboard_post_init_kb(void) { wait_ms(150); // Initialise the LCD - lcd = qp_ili9341_make_spi_device(320, 240, LCD_CS_PIN, LCD_DC_PIN, LCD_RST_PIN, 4, 3); + lcd = qp_ili9341_make_spi_device(320, 240, LCD_CS_PIN, LCD_DC_PIN, LCD_RST_PIN, 4, 0); qp_init(lcd, QP_ROTATION_0); // Turn on the LCD and clear the display |