* added lilygo t-deck restructured boards implemented HardwareConfig implemented lilygo t-deck lcd and touch drivers added sdkconfig defaults for supported boards * cleanup * added esp32s3 job * build job names updated * wip * partial revert * update readme and build.yml * updated build.yaml with fix for quotes * use esp-idf 5.1.2 * improvements and fixes * fixes for display code * made config const * various improvements
15 lines
371 B
Plaintext
15 lines
371 B
Plaintext
# Kconfig file for NanoBake example app
|
|
menu "NanoBake App"
|
|
choice
|
|
prompt "Board"
|
|
default NB_BOARD_CUSTOM
|
|
|
|
config NB_BOARD_CUSTOM
|
|
bool "Custom"
|
|
config NB_BOARD_YELLOW_BOARD_24_CAP
|
|
bool "Yellow Board (2.4\" capacitive)"
|
|
config NB_BOARD_LILYGO_TDECK
|
|
bool "LilyGo T-Deck"
|
|
endchoice
|
|
endmenu
|