mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
19 lines
252 B
C++
19 lines
252 B
C++
#include "M5Unified.hpp"
|
|
#include "log.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define TAG "m5stack_bootstrap"
|
|
|
|
bool m5stack_bootstrap() {
|
|
TT_LOG_I(TAG, "Initializing M5Unified");
|
|
M5.begin();
|
|
return true;
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|