Files
ZephCore/zephcore/include/mesh/Clock.h
T
2026-06-07 22:47:17 +02:00

18 lines
222 B
C++

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