* 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
11 lines
324 B
C
11 lines
324 B
C
#include "yellow_board.h"
|
|
|
|
DisplayDriver board_2432s024_create_display_driver();
|
|
TouchDriver board_2432s024_create_touch_driver();
|
|
|
|
const HardwareConfig yellow_board_24inch_cap = {
|
|
.bootstrap = NULL,
|
|
.display_driver = &board_2432s024_create_display_driver,
|
|
.touch_driver = &board_2432s024_create_touch_driver
|
|
};
|