mirror of
https://github.com/liquidraver/ZephCore.git
synced 2026-09-02 09:53:45 +00:00
18 lines
265 B
C++
18 lines
265 B
C++
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
* ZephCore clock interfaces - matches Dispatcher.h / MeshCore.h
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace mesh {
|
|
|
|
class MillisecondClock {
|
|
public:
|
|
virtual unsigned long getMillis() = 0;
|
|
};
|
|
|
|
} /* namespace mesh */
|