11 lines
141 B
C++
11 lines
141 B
C++
#pragma once
|
|
|
|
#include "freertos.h"
|
|
|
|
namespace time {
|
|
|
|
uint32_t millis() {
|
|
return xTaskGetTickCount();
|
|
}
|
|
|
|
} // namespace time
|