mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-04-20 10:25:06 +00:00
* 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
18 lines
224 B
C
18 lines
224 B
C
#pragma once
|
|
|
|
#include "display.h"
|
|
#include "touch.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
DisplayDevice* _Nonnull display;
|
|
TouchDevice* _Nullable touch;
|
|
} Hardware;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|