mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-04-04 14:08:36 +00:00
start1
This commit is contained in:
parent
b00fba9693
commit
4c63dd8bb7
10 changed files with 78 additions and 34 deletions
|
|
@ -122,6 +122,11 @@ public:
|
|||
float gmtCorrection;
|
||||
};
|
||||
|
||||
class REMOTE_MANAGEMENT {
|
||||
public:
|
||||
String managers;
|
||||
bool rfOnly;
|
||||
};
|
||||
|
||||
class Configuration {
|
||||
public:
|
||||
|
|
@ -133,7 +138,7 @@ public:
|
|||
bool rebootMode;
|
||||
int rebootModeTime;
|
||||
String personalNote;
|
||||
String blackList;
|
||||
String blacklist;
|
||||
std::vector<WiFi_AP> wifiAPs;
|
||||
WiFi_Auto_AP wifiAutoAP;
|
||||
BEACON beacon;
|
||||
|
|
@ -147,7 +152,8 @@ public:
|
|||
TNC tnc;
|
||||
OTA ota;
|
||||
WEBADMIN webadmin;
|
||||
NTP ntp;
|
||||
NTP ntp;
|
||||
REMOTE_MANAGEMENT remoteManagement;
|
||||
|
||||
void init();
|
||||
void writeFile();
|
||||
|
|
|
|||
|
|
@ -18,8 +18,10 @@ struct LastHeardStation {
|
|||
|
||||
namespace STATION_Utils {
|
||||
|
||||
void loadBlackList();
|
||||
bool checkBlackList(const String& callsign);
|
||||
void loadBlacklist();
|
||||
void loadManagers();
|
||||
bool isBlacklisted(const String& callsign);
|
||||
bool isManager(const String& callsign);
|
||||
bool checkObjectTime(const String& packet);
|
||||
void deleteNotHeard();
|
||||
void updateLastHeard(const String& station);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue