Files
tactility/Tactility/Include/Tactility/lvgl/Lvgl.h
T
2025-10-03 22:12:55 +02:00

20 lines
314 B
C++

#pragma once
namespace tt::lvgl {
#ifdef ESP_PLATFORM
static constexpr auto* PATH_PREFIX = "A:";
#else
// PC paths are relative, unlike ESP paths.
// LVGL paths require a `/` prefix, so we have to add it here:
static constexpr auto* PATH_PREFIX = "A:/";
#endif
bool isStarted();
void start();
void stop();
}