mirror of
https://github.com/liquidraver/ZephCore.git
synced 2026-09-03 14:03:55 +00:00
18 lines
278 B
C++
18 lines
278 B
C++
/*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
* Zephyr implementation of MillisecondClock
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <mesh/Clock.h>
|
|
|
|
namespace mesh {
|
|
|
|
class ZephyrMillisecondClock : public MillisecondClock {
|
|
public:
|
|
unsigned long getMillis() override;
|
|
};
|
|
|
|
} /* namespace mesh */
|