sta-core/src/time.cpp

27 lines
282 B
C++

/*
* time.cpp
*
* Created on: May 22, 2024
* Author: Dario
*/
#include <sta/time.hpp>
#include <sta/lang.hpp>
namespace sta
{
STA_WEAK
uint32_t timeMs()
{
STA_NOT_IMPLEMENTED();
}
STA_WEAK
uint32_t timeUs()
{
STA_NOT_IMPLEMENTED();
}
} // namespace sta