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