Add first pass of SPI LCD logic

This commit is contained in:
maddiebaka
2025-12-05 23:34:42 -05:00
parent 33314d2a4a
commit 1763303f3c
54 changed files with 3422 additions and 1 deletions
+41
View File
@@ -9,4 +9,45 @@ menu "Pin Mapping Configuration"
default 27
help
This is the pin used for receiving UART telemetry from the ESC.
config TFT_MISO_PIN
int "SPI LCD MISO pin"
default 12
help
This is the pin for MISO on the SPI LCD.
config TFT_MOSI_PIN
int "SPI LCD MOSI pin"
default 13
help
This is the pin for MOSI on the SPI LCD.
config TFT_SCKL_PIN
int "SPI LCD SCKL pin"
default 14
help
This is the pin for SCKL on the SPI LCD.
config TFT_CS_PIN
int "SPI LCD CS pin"
default 15
help
This is the pin for CS on the SPI LCD.
config TFT_DC_PIN
int "SPI LCD DC pin"
default 2
help
This is the pin for DC on the SPI LCD.
config TFT_BL_PIN
int "SPI LCD BL (backlight) pin"
default 21
help
This is the pin for backlight control on the SPI LCD.
config TFT_HRES
int "The horizontal resolution of the TFT display"
default 320
help
This is the horizontal resolution for the front-panel SPI LCD
config TFT_VRES
int "The vertical resolution of the TFT display"
default 240
help
This is the vertical resolution for the front-panel SPI LCD
endmenu