mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2025-12-06 07:42:00 +01:00
- task manager working now in round robbin and returning after every task to arduino - adding a system class which is managing all bigger things
29 lines
426 B
C++
29 lines
426 B
C++
#include "Timer.h"
|
|
|
|
Timer::Timer() : _timeout_sec(0), _timeout(0) {
|
|
}
|
|
|
|
void Timer::setTimeout(const time_t timeout_sec) {
|
|
_timeout_sec = timeout_sec;
|
|
}
|
|
|
|
time_t Timer::getTriggerTime() const {
|
|
return _timeout;
|
|
}
|
|
|
|
bool Timer::isActive() const {
|
|
return _timeout != 0;
|
|
}
|
|
|
|
void Timer::reset() {
|
|
_timeout = 0;
|
|
}
|
|
|
|
bool Timer::check() {
|
|
return now() > _timeout;
|
|
}
|
|
|
|
void Timer::start() {
|
|
_timeout = now() + _timeout_sec;
|
|
}
|