mirror of
https://github.com/ddv2005/AirsoftTracker.git
synced 2026-01-12 14:07:07 +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
|