ASCEND Flight Software
Loading...
Searching...
No Matches
Device.h
Go to the documentation of this file.
1#ifndef DEVICE_H
2#define DEVICE_H
3
4#include <Arduino.h>
5
6#include "Logger.h"
7
8#define MINUTE_IN_MILLIS (1000 * 60)
9
14class Device {
15 private:
16 unsigned long last_attempt;
17 // set max_attempts to -1 to have remove attempt limit
20 unsigned long wait_factor;
21
22 protected:
23 // current verification of the sensor, can be set by children to trigger a
24 // verify
27
28 public:
35 this->verified = false;
36 this->last_attempt = -1;
37 this->max_attempts = 1;
38 this->attempt_number = 0;
39 this->wait_factor = 1 * MINUTE_IN_MILLIS;
40 this->device_name = device_name;
41 }
42
53 this->max_attempts = max_attempts;
54 this->wait_factor = wait_factor;
55 }
56
57 const String& getDeviceName() { return this->device_name; }
58
65 virtual bool verify() = 0;
66
73 bool getVerified() { return this->verified; }
74
83 void recoveryConfig(int max_attempts, int wait_factor) {
84 this->setMaxAttempts(max_attempts);
85 this->setWaitFactor(wait_factor);
86 }
87
94 void setWaitFactor(int wait_factor) { this->wait_factor = wait_factor; }
95
102 void setMaxAttempts(int max_attempts) { this->max_attempts = max_attempts; }
103
114 // if it isn't verified and is time to try again
115 // time between tests scales with attempt_number to spread out attempts
116 if (this->verified == false &&
117 (this->max_attempts == -1 ||
118 this->attempt_number < this->max_attempts) &&
119 ((millis() - this->last_attempt) >
120 (this->wait_factor * this->attempt_number))) {
121 log_core("Attempt on " + this->device_name);
122 // try to verify again
123 this->verified = this->verify();
124 // update record
125 this->last_attempt = millis();
126 if (this->verified) {
127 this->attempt_number = 0;
128 } else {
129 this->attempt_number++;
130 }
131 }
132 // return result
133 return this->verified;
134 }
135};
136
137#endif // DEVICE_H
#define MINUTE_IN_MILLIS
Definition Device.h:8
Implements the recovery system for Sensor and Storage objects.
Definition Device.h:14
bool getVerified()
Get if the Device is Verified.
Definition Device.h:73
Device(String device_name)
Default constructor, sets a max_attempt of 1 (device recovery won't be attempted)
Definition Device.h:34
virtual bool verify()=0
Verifies if the Device is connected and working.
unsigned long last_attempt
Definition Device.h:16
Device(String device_name, int max_attempts, int wait_factor)
Definition Device.h:51
unsigned long wait_factor
Definition Device.h:20
void setMaxAttempts(int max_attempts)
Set max_attempts.
Definition Device.h:102
int attempt_number
Definition Device.h:19
bool verified
Definition Device.h:25
String device_name
Definition Device.h:26
bool attemptConnection()
If the sensor is verified, return true, if not and it has been long enough since the last attempt (de...
Definition Device.h:113
const String & getDeviceName()
Definition Device.h:57
int max_attempts
Definition Device.h:18
void setWaitFactor(int wait_factor)
Set wait_factor.
Definition Device.h:94
void recoveryConfig(int max_attempts, int wait_factor)
Set recovery config (used keep default constructor)
Definition Device.h:83