mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-03 03:09:59 +00:00
11 lines
155 B
C++
11 lines
155 B
C++
|
#include "timing.h"
|
||
|
#include "freertosinc.h"
|
||
|
|
||
|
namespace timing {
|
||
|
|
||
|
uint32_t millis() {
|
||
|
return xTaskGetTickCount();
|
||
|
}
|
||
|
|
||
|
} // namespace timing
|