mirror of
https://github.com/liquidraver/ZephCore.git
synced 2026-09-02 03:08:27 +00:00
16 lines
242 B
C++
16 lines
242 B
C++
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#include "ZephyrMillisecondClock.h"
|
|
#include <zephyr/kernel.h>
|
|
|
|
namespace mesh {
|
|
|
|
unsigned long ZephyrMillisecondClock::getMillis()
|
|
{
|
|
return (unsigned long)k_uptime_get_32();
|
|
}
|
|
|
|
} /* namespace mesh */
|