Files
meshtastic_firmware/src/time.h
T
2020-07-06 00:54:30 +02:00

11 lines
141 B
C++

#pragma once
#include "freertos.h"
namespace time {
uint32_t millis() {
return xTaskGetTickCount();
}
} // namespace time