/* * SPDX-License-Identifier: Apache-2.0 */ #include "ZephyrMillisecondClock.h" #include namespace mesh { unsigned long ZephyrMillisecondClock::getMillis() { return (unsigned long)k_uptime_get_32(); } } /* namespace mesh */