mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-10 16:55:58 +00:00
27 lines
282 B
C++
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
|
|
|
|
|