Added Lilygo T-Deck support & more (#4)
* 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
This commit is contained in:
committed by
GitHub
parent
eed990217f
commit
8336316133
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
// Supported hardware:
|
||||
#if defined(CONFIG_NB_BOARD_LILYGO_TDECK)
|
||||
#include "lilygo_tdeck.h"
|
||||
#define NB_BOARD_HARDWARE &lilygo_tdeck
|
||||
#elif defined(CONFIG_NB_BOARD_YELLOW_BOARD_24_CAP)
|
||||
#include "yellow_board.h"
|
||||
#define NB_BOARD_HARDWARE &yellow_board_24inch_cap
|
||||
#elif defined(CONFIG_NB_BOARD_CUSTOM)
|
||||
#define NB_BOARD_HARDWARE furi_crash( \
|
||||
"Replace NB_BOARD_HARDWARE in main.c with your own, or use \"idf.py menuconfig\" to select a supported board." \
|
||||
)
|
||||
#endif
|
||||
Reference in New Issue
Block a user