![]() |
SX126x-Arduino
2.0.1
|
Timer object description. More...
#include <timer.h>
Data Fields | |
uint8_t | timerNum |
bool | oneShot = true |
uint32_t | Timestamp |
uint32_t | ReloadValue = 10000 |
bool | IsRunning |
void(* | Callback )(void) |
struct TimerEvent_s * | Next |
Timer object description.
uint8_t TimerEvent_s::timerNum |
Used with ESP32 MCU 1 for TX, 2 for RX
bool TimerEvent_s::oneShot = true |
True if it is a one shot timer
uint32_t TimerEvent_s::Timestamp |
Current timer value
uint32_t TimerEvent_s::ReloadValue = 10000 |
Timer delay value
bool TimerEvent_s::IsRunning |
Is the timer currently running
void(* TimerEvent_s::Callback) (void) |
Timer IRQ callback function
struct TimerEvent_s* TimerEvent_s::Next |
Pointer to the next Timer object.