* refactor modules * moved esp_lvgl_port to libs/ * added missing file * fix for sim build * various sim/pc fixes * lvgl improvements * added missing cmake files
19 lines
318 B
C
19 lines
318 B
C
#pragma once
|
|
|
|
#include "tactility-esp.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// Available for HardwareConfig customizations
|
|
void lilygo_tdeck_bootstrap();
|
|
DisplayDriver lilygo_tdeck_display_driver();
|
|
TouchDriver lilygo_tdeck_touch_driver();
|
|
|
|
extern const HardwareConfig lilygo_tdeck;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|