1c2806bddf
+ other improvements
14 lines
198 B
C++
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
|