14eb43211d
* initial changes for waveshare s3 touch support * fix lvgl locking * fix for lvgl locking * cleaned up dependencies * boards now depend on tactility instead of tactility-esp * revert deletion * remove component * working touch&display driver * added waveshare to github actions * cleanup * fix for driver * fix for sim build * build fixes * updated docs * updated docs * attempt new sdl2 github action * revert * fixes for clion/cmdline build environment wasn't parsed properly * temporarily disable pc sim build
19 lines
590 B
C
19 lines
590 B
C
#pragma once
|
|
|
|
#include "sdkconfig.h"
|
|
|
|
// Supported hardware:
|
|
#if defined(CONFIG_TT_BOARD_LILYGO_TDECK)
|
|
#include "lilygo_tdeck.h"
|
|
#define TT_BOARD_HARDWARE &lilygo_tdeck
|
|
#elif defined(CONFIG_TT_BOARD_YELLOW_BOARD_24_CAP)
|
|
#include "yellow_board.h"
|
|
#define TT_BOARD_HARDWARE &yellow_board_24inch_cap
|
|
#elif defined(CONFIG_TT_BOARD_WAVESHARE_S3_TOUCH)
|
|
#include "waveshare_s3_touch.h"
|
|
#define TT_BOARD_HARDWARE &waveshare_s3_touch
|
|
#else
|
|
#define TT_BOARD_HARDWARE NULL
|
|
#error Replace TT_BOARD_HARDWARE in main.c with your own. Or copy one of the ./sdkconfig.board.* files into ./sdkconfig.
|
|
#endif
|