mirror of
https://github.com/ddv2005/AirsoftTracker.git
synced 2026-01-11 21:47:11 +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
|