Files
2026-06-07 22:47:17 +02:00

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