Files
ZephCore/zephcore/adapters/clock/ZephyrMillisecondClock.h
T

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 */