Files
ZephCore/zephcore/include/mesh/Clock.h
T
2026-03-28 20:53:59 +01:00

18 lines
229 B
C++

/*
* SPDX-License-Identifier: Apache-2.0
* ZephCore clock interfaces
*/
#pragma once
#include <stdint.h>
namespace mesh {
class MillisecondClock {
public:
virtual unsigned long getMillis() = 0;
};
} /* namespace mesh */