WIP add super basic gps handler

This commit is contained in:
2023-02-28 01:34:04 +01:00
parent 9b22bc6acf
commit 8bd5604a3c
5 changed files with 108 additions and 17 deletions

View File

@@ -59,6 +59,11 @@ class log {
return logger_impl.init();
}
static void linebreak() {
const auto val = std::string_view{"\r\n"};
return logger->log(val);
}
template <typename... Args>
static void error(Args&&... args) {
if (!log_impl_begin(LogLevel::ERROR)) {