mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-10 22:51:23 +00:00
9 lines
211 B
C
9 lines
211 B
C
![]() |
#pragma once
|
||
|
#include <cstddef>
|
||
|
#include <cstdint>
|
||
|
|
||
|
class Throttle
|
||
|
{
|
||
|
public:
|
||
|
static bool execute(uint32_t *lastExecutionMs, uint32_t minumumIntervalMs, void (*func)(void), void (*onDefer)(void) = NULL);
|
||
|
};
|