13 lines
207 B
C++
13 lines
207 B
C++
#include <stdint.h>
|
|
#include "TinyTimer.h"
|
|
|
|
void TinyTimer::on(const uint32_t match, TimerCallback callback) {
|
|
onTimer = callback;
|
|
setup(match);
|
|
}
|
|
|
|
void TinyTimer::off() {
|
|
teardown();
|
|
onTimer = 0;
|
|
}
|