mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-20 09:17:23 +01:00
So that we can build invocation-less timers Change-Id: I412fc8ad040156340caab295719fb83ed25b8b51
16 lines
304 B
C++
16 lines
304 B
C++
#ifndef ESCHER_INVOCATION_TIMER_H
|
|
#define ESCHER_INVOCATION_TIMER_H
|
|
|
|
#include <escher/timer.h>
|
|
#include <escher/invocation.h>
|
|
|
|
class InvocationTimer : public Timer {
|
|
public:
|
|
InvocationTimer(Invocation invocation, uint32_t period);
|
|
private:
|
|
void fire() override;
|
|
Invocation m_invocation;
|
|
};
|
|
|
|
#endif
|