mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
* 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
11 lines
223 B
C
11 lines
223 B
C
#include "lilygo_tdeck.h"
|
|
#include <stdbool.h>
|
|
|
|
bool lilygo_tdeck_bootstrap();
|
|
bool lilygo_init_lvgl();
|
|
|
|
const HardwareConfig lilygo_tdeck = {
|
|
.bootstrap = &lilygo_tdeck_bootstrap,
|
|
.init_lvgl = &lilygo_init_lvgl
|
|
};
|