Loom
|
Submanager for managing interrupts, timers, and stopwatches. More...
#include <Interrupt_Manager.h>
Public Member Functions | |
CONSTRUCTORS / DESTRUCTOR | |
Loom_Interrupt_Manager (LoomManager *manager, LoomRTC *RTC_Inst=nullptr) | |
Interrupt Manager module constructor. More... | |
Loom_Interrupt_Manager (LoomManager *manager, JsonArrayConst p) | |
Constructor that takes Json Array, extracts args and delegates to regular constructor. More... | |
~Loom_Interrupt_Manager ()=default | |
Destructor. More... | |
OPERATION | |
void | package (JsonObject json) override |
No package necessary. More... | |
void | run_pending_ISRs () |
Run any waiting ISRs. More... | |
EXTERNAL INTERRUPT METHODS | |
void | register_ISR (const uint32_t pin, ISRFuncPtr ISR, const uint32_t signal_type, ISR_Type run_type) |
Register an ISR to an interrupt pin and its configuration. More... | |
bool | reconnect_interrupt (const uint32_t pin) |
If an ISR dettaches interrupt, use this to reattach according to previous settings. More... | |
void | unregister_ISR (const uint32_t pin, const uint32_t signal_type=LOW) |
Restores pin to default ISR, disables interrupt. More... | |
void | interrupt_reset (const uint32_t pin) |
Detaches then reattacheds interrupt according to settings. More... | |
RTC ALARM METHODS | |
bool | RTC_alarm_duration (const TimeSpan duration) |
Set RTC alarm an amount of time from now. More... | |
bool | RTC_alarm_duration (const uint8_t days, const uint8_t hours, const uint8_t minutes, const uint8_t seconds) |
Set RTC alarm an amount of time from now. More... | |
bool | RTC_alarm_at (DateTime future_time) |
Set RTC alarm for a specific time. More... | |
bool | RTC_alarm_at (const uint8_t hour, const uint8_t minute, const uint8_t second) |
Set RTC alarm for a specific time. More... | |
bool | RTC_alarm_duration_from_last (const TimeSpan duration) |
Set RTC alarm an amount of time from last alarm time. More... | |
bool | RTC_alarm_duration_from_last (const uint8_t days, const uint8_t hours, const uint8_t minutes, const uint8_t seconds) |
Set RTC alarm an amount of time from last alarm time. More... | |
ASYNCDELAY TIMER METHODS | |
void | check_timers () |
Check if timers have elapsed, if so run associated 'ISR'. More... | |
void | register_timer (const uint8_t timer_num, const unsigned long duration, const ISRFuncPtr ISR, const bool repeat) |
Configure specified timer. More... | |
void | clear_timer (const uint8_t timer_num) |
Clear specified timer. More... | |
INTERNAL TIMER METHODS | |
void | register_internal_timer (const uint duration, const ISRFuncPtr ISR, const bool repeat, const ISR_Type run_type) |
Configure internal timer. More... | |
bool | run_pending_internal_timer_ISR () |
Run a delayed (flag based) ISR if the interal timer elapsed. More... | |
bool | get_internal_timer_flag () const |
Get whether the internal timer has elapsed. More... | |
void | clear_internal_timer_flag () const |
Clear internal timer flag. More... | |
void | internal_timer_enable (const bool enable) |
Enable or disable internal timer. More... | |
void | unregister_internal_timer () |
Clear and disable internal timer, remove ISR. More... | |
PRINT INFORMATION | |
void | print_config () const override |
Display the configuration settings of the module. More... | |
void | print_state () const override |
Display current state of the module. More... | |
GETTERS | |
bool | get_interrupts_enabled () const |
Get global interrupt enable state. More... | |
bool | get_enable_interrupt (const uint32_t pin) const |
Get pin interrupt enable state. More... | |
LoomRTC * | get_RTC_module () const |
Return pointer to the currently linked RTC object. More... | |
SETTERS | |
void | link_device_manager (LoomManager *LM) override |
Link a device manager. More... | |
void | link_sleep_manager (Loom_Sleep_Manager *SM) |
Set pointer to sleep Manager. More... | |
void | set_interrupts_enabled (const bool state) |
All interrupts enable/disable. More... | |
void | set_enable_interrupt (const uint32_t pin, const bool state) |
Per interrupt enable. More... | |
void | set_RTC_module (LoomRTC *RTC_Inst) |
Set the RTC module to use for timers. More... | |
![]() | |
LoomModule (LoomManager *manager, const char *module_name="Unknown", const Type module_type=Type::Unknown) | |
Constructor. More... | |
virtual | ~LoomModule ()=default |
Destructor. More... | |
virtual void | second_stage_ctor () |
Second stage construction. More... | |
virtual bool | dispatch (JsonObject json) |
Route command to driver. More... | |
virtual void | power_down () |
Turn off any hardware. More... | |
virtual void | power_up () |
Turn on any hardware. More... | |
virtual void | add_config (JsonObject json) |
Add configuration information to JsonObject. More... | |
Type | get_module_type () const |
Get module type. More... | |
LoomManager * | get_device_manager () const |
Get the device manager class if linked. More... | |
void | get_module_name (char *buf) const |
Copy module name into buffer. More... | |
const char * | get_module_name () const |
Get module name. More... | |
Verbosity | get_print_verbosity () const |
Get print verbosity. More... | |
Verbosity | get_package_verbosity () const |
Get package verbosity. More... | |
bool | get_active () const |
Get whether or not the module should be treated as active. More... | |
Category | category () const |
Get the category of the module. More... | |
void | set_print_verbosity (const Verbosity v) |
Set print verbosity Controlls level of detail included in debug prints. More... | |
void | set_package_verbosity (const Verbosity v) |
Set package verbosity. More... | |
void | set_active (const bool enable) |
Set whether or not the module should be treated as active. More... | |
Protected Attributes | |
LoomRTC * | RTC_Inst |
Pointer to an RTC object for managing timers / timed interrupts. More... | |
Loom_Sleep_Manager * | Sleep_Manager |
Pointer to a Sleep Manager object. More... | |
IntDetails | int_settings [InteruptRange] |
List of interrupts configurations. More... | |
uint8_t | int_count = 0 |
bool | interrupts_enabled |
Enable or disable all interrupts – currently only disables bottom halves. More... | |
InternalTimerDetails | internal_timer |
DateTime | last_alarm_time |
Last time an alarm went off. More... | |
AsyncDelay | timers [MaxTimerCount] |
TimerDetails | timer_settings [MaxTimerCount] |
StopWatchDetails | stopwatch_settings [MaxStopWatchCount] |
![]() | |
const Type | module_type |
Module type. More... | |
LoomManager * | device_manager |
Pointer to manager. More... | |
const String | module_name_base |
The name of the module (Should have a DEFAULT but can be overriden if provided to constructor) More... | |
const char * | module_name |
bool | active |
Whether or not the module should be treated as active. More... | |
Verbosity | print_verbosity |
Print verbosity. More... | |
Verbosity | package_verbosity |
Package verbosity. More... | |
Static Protected Attributes | |
static bool | interrupt_triggered [InteruptRange] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0} |
Flags set by interrupts, indicating ISR bottom half should be called if not Null. More... | |
MISCELLANEOUS | |
uint32_t | pin_to_interrupt (uint32_t pin) |
static const char * | interrupt_type_to_string (const uint8_t type) |
Get c-string of name associated with interrupt type enum. More... | |
Submanager for managing interrupts, timers, and stopwatches.
Loom_Interrupt_Manager::Loom_Interrupt_Manager | ( | LoomManager * | manager, |
LoomRTC * | RTC_Inst = nullptr |
||
) |
Interrupt Manager module constructor.
[in] | RTC_Inst | Set(Int) | <0> | {0("Null")} | OLED module name |
Loom_Interrupt_Manager::Loom_Interrupt_Manager | ( | LoomManager * | manager, |
JsonArrayConst | p | ||
) |
Constructor that takes Json Array, extracts args and delegates to regular constructor.
[in] | p | The array of constuctor args to expand |
|
default |
Destructor.
void Loom_Interrupt_Manager::check_timers | ( | ) |
Check if timers have elapsed, if so run associated 'ISR'.
|
inline |
Clear internal timer flag.
void Loom_Interrupt_Manager::clear_timer | ( | const uint8_t | timer_num | ) |
Clear specified timer.
[in] | timer_num | Timer to clear |
|
inline |
Get pin interrupt enable state.
[in] | pin | Pin to the the enable state of |
|
inline |
Get whether the internal timer has elapsed.
|
inline |
Get global interrupt enable state.
|
inline |
Return pointer to the currently linked RTC object.
void Loom_Interrupt_Manager::internal_timer_enable | ( | const bool | enable | ) |
Enable or disable internal timer.
Disabling does not remove settings, use unregister_interal_timer for that behavior
[in] | enable | True to enable timer, false to disable |
void Loom_Interrupt_Manager::interrupt_reset | ( | const uint32_t | pin | ) |
Detaches then reattacheds interrupt according to settings.
used to clear pending interrupts
[in] | pin | Pin to reset interrupts for ... |
|
static |
Get c-string of name associated with interrupt type enum.
[in] | type | Interrupt type |
|
overridevirtual |
Link a device manager.
Overrides default by getting RTC pointer from device manager if possible
[in] | LM | Manager to link |
Reimplemented from LoomModule.
void Loom_Interrupt_Manager::link_sleep_manager | ( | Loom_Sleep_Manager * | SM | ) |
Set pointer to sleep Manager.
[in] | SM | Pointer to sleep manager |
|
inlineoverridevirtual |
uint32_t Loom_Interrupt_Manager::pin_to_interrupt | ( | uint32_t | pin | ) |
|
overridevirtual |
Display the configuration settings of the module.
Reimplemented from LoomModule.
|
overridevirtual |
Display current state of the module.
Reimplemented from LoomModule.
bool Loom_Interrupt_Manager::reconnect_interrupt | ( | const uint32_t | pin | ) |
If an ISR dettaches interrupt, use this to reattach according to previous settings.
Effectively to running register_ISR with previous settings
[in] | pin | Which pin to reconnect the interrupt on |
void Loom_Interrupt_Manager::register_internal_timer | ( | const uint | duration, |
const ISRFuncPtr | ISR, | ||
const bool | repeat, | ||
const ISR_Type | run_type | ||
) |
Configure internal timer.
[in] | duration | How long timer should take (seconds) |
[in] | ISR | ISR to run after timer goes off |
[in] | repeat | Whether or not to be a repeating alarm |
[in] | run_type | Whether the interrupt runs immediately, else sets flag to check and runs ISR when flag checked |
void Loom_Interrupt_Manager::register_ISR | ( | const uint32_t | pin, |
ISRFuncPtr | ISR, | ||
const uint32_t | signal_type, | ||
ISR_Type | run_type | ||
) |
Register an ISR to an interrupt pin and its configuration.
[in] | pin | Which pin to connect the interrupt on |
[in] | ISR | ISR function (Null if no interrupt linked) |
[in] | signal_type | Low, High, Change, Falling, Rising |
[in] | run_type | Whether the interrupt runs immediately, else sets flag to check and runs ISR when flag checked |
void Loom_Interrupt_Manager::register_timer | ( | const uint8_t | timer_num, |
const unsigned long | duration, | ||
const ISRFuncPtr | ISR, | ||
const bool | repeat | ||
) |
Configure specified timer.
[in] | timer_num | Timer to set |
[in] | duration | How long timer should take (seconds) |
[in] | ISR | ISR to run after timer goes off |
[in] | repeat | Whether or not to be a repeating alarm |
bool Loom_Interrupt_Manager::RTC_alarm_at | ( | DateTime | future_time | ) |
Set RTC alarm for a specific time.
Increments to next day at given hour, min, sec if specified time is in past
[in] | future_time | Time to set alarm for |
bool Loom_Interrupt_Manager::RTC_alarm_at | ( | const uint8_t | hour, |
const uint8_t | minute, | ||
const uint8_t | second | ||
) |
Set RTC alarm for a specific time.
Forwards to RTC_alarm_at that takes DateTime object
[in] | hour | Hour to set alarm for |
[in] | minute | Minute to set alarm for |
[in] | second | Second to set alarm for |
bool Loom_Interrupt_Manager::RTC_alarm_duration | ( | const TimeSpan | duration | ) |
Set RTC alarm an amount of time from now.
[in] | duration | How long before the alarm should go off |
bool Loom_Interrupt_Manager::RTC_alarm_duration | ( | const uint8_t | days, |
const uint8_t | hours, | ||
const uint8_t | minutes, | ||
const uint8_t | seconds | ||
) |
Set RTC alarm an amount of time from now.
[in] | days | Days into the future the alarm should be set |
[in] | hours | Hours into the future the alarm should be set |
[in] | minutes | Minutes into the future the alarm should be set |
[in] | seconds | Seconds into the future the alarm should be set |
bool Loom_Interrupt_Manager::RTC_alarm_duration_from_last | ( | const TimeSpan | duration | ) |
Set RTC alarm an amount of time from last alarm time.
[in] | duration | How long before the alarm should go off |
bool Loom_Interrupt_Manager::RTC_alarm_duration_from_last | ( | const uint8_t | days, |
const uint8_t | hours, | ||
const uint8_t | minutes, | ||
const uint8_t | seconds | ||
) |
Set RTC alarm an amount of time from last alarm time.
[in] | days | Days into the future the alarm should be set |
[in] | hours | Hours into the future the alarm should be set |
[in] | minutes | Minutes into the future the alarm should be set |
[in] | seconds | Seconds into the future the alarm should be set |
bool Loom_Interrupt_Manager::run_pending_internal_timer_ISR | ( | ) |
Run a delayed (flag based) ISR if the interal timer elapsed.
Is not needed if using ISR_Type::IMMEDIATE ISR
void Loom_Interrupt_Manager::run_pending_ISRs | ( | ) |
Run any waiting ISRs.
Flag was set by a top half ISR
void Loom_Interrupt_Manager::set_enable_interrupt | ( | const uint32_t | pin, |
const bool | state | ||
) |
Per interrupt enable.
[in] | pin | Interrupt pin to change enable state of |
[in] | state | The enable state to set pin to |
|
inline |
All interrupts enable/disable.
[in] | state | Enable state to apply to all interrupts |
|
inline |
Set the RTC module to use for timers.
[in] | RTC_Inst | Pointer to the RTC object |
void Loom_Interrupt_Manager::unregister_internal_timer | ( | ) |
Clear and disable internal timer, remove ISR.
void Loom_Interrupt_Manager::unregister_ISR | ( | const uint32_t | pin, |
const uint32_t | signal_type = LOW |
||
) |
Restores pin to default ISR, disables interrupt.
[in] | pin | The pin to unregister ISRs for |
[in] | signal_type | What signal to configure default ISR to (default LOW) |
|
protected |
|
protected |
List of interrupts configurations.
|
protected |
|
staticprotected |
Flags set by interrupts, indicating ISR bottom half should be called if not Null.
|
protected |
Enable or disable all interrupts – currently only disables bottom halves.
|
protected |
Last time an alarm went off.
|
protected |
Pointer to an RTC object for managing timers / timed interrupts.
|
protected |
Pointer to a Sleep Manager object.
|
protected |
|
protected |
|
protected |