Files
2026-07-09 21:03:38 +02:00

14 lines
198 B
C++

#include "../Include/Tactility/Platform.h"
namespace tt::kernel {
Platform getPlatform() {
#ifdef ESP_PLATFORM
return PlatformEsp;
#else
return PlatformSimulator;
#endif
}
} // namespace