mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-08-08 01:42:45 +02:00
minor code cleaning
This commit is contained in:
+9
-9
@@ -6,15 +6,15 @@
|
||||
|
||||
namespace APRS_IS_Utils {
|
||||
|
||||
void upload(const String& line);
|
||||
void connect();
|
||||
void checkStatus();
|
||||
String buildPacketToUpload(const String& packet);
|
||||
String buildPacketToTx(const String& aprsisPacket, uint8_t packetType);
|
||||
bool processReceivedLoRaMessage(const String& sender, const String& packet);
|
||||
void processLoRaPacket(const String& packet);
|
||||
void processAPRSISPacket(const String& packet);
|
||||
void listenAPRSIS();
|
||||
void upload(const String& line);
|
||||
void connect();
|
||||
void checkStatus();
|
||||
String buildPacketToUpload(const String& packet);
|
||||
String buildPacketToTx(const String& aprsisPacket, uint8_t packetType);
|
||||
bool processReceivedLoRaMessage(const String& sender, const String& packet);
|
||||
void processLoRaPacket(const String& packet);
|
||||
void processAPRSISPacket(const String& packet);
|
||||
void listenAPRSIS();
|
||||
|
||||
}
|
||||
|
||||
|
||||
+6
-6
@@ -10,12 +10,12 @@
|
||||
|
||||
namespace BME_Utils {
|
||||
|
||||
void getWxModuleAddres();
|
||||
void setup();
|
||||
String generateTempString(float bmeTemp);
|
||||
String generateHumString(float bmeHum);
|
||||
String generatePresString(float bmePress);
|
||||
String readDataSensor();
|
||||
void getWxModuleAddres();
|
||||
void setup();
|
||||
String generateTempString(float bmeTemp);
|
||||
String generateHumString(float bmeHum);
|
||||
String generatePresString(float bmePress);
|
||||
String readDataSensor();
|
||||
|
||||
}
|
||||
|
||||
|
||||
+2
-2
@@ -6,8 +6,8 @@
|
||||
|
||||
namespace DIGI_Utils {
|
||||
|
||||
String generateDigiRepeatedPacket(const String& packet);
|
||||
void processLoRaPacket(const String& packet);
|
||||
String generateDigiRepeatedPacket(const String& packet);
|
||||
void processLoRaPacket(const String& packet);
|
||||
|
||||
}
|
||||
|
||||
|
||||
+8
-8
@@ -6,14 +6,14 @@
|
||||
|
||||
namespace GPS_Utils {
|
||||
|
||||
String getiGateLoRaBeaconPacket();
|
||||
char *ax25_base91enc(char *s, uint8_t n, uint32_t v);
|
||||
String encodeGPS(float latitude, float longitude, const String& overlay, const String& symbol);
|
||||
void generateBeacons();
|
||||
double calculateDistanceCourse(double latitude, double longitude);
|
||||
String decodeEncodedGPS(const String& packet);
|
||||
String getReceivedGPS(const String& packet);
|
||||
String getDistanceAndComment(const String& packet);
|
||||
String getiGateLoRaBeaconPacket();
|
||||
char *ax25_base91enc(char *s, uint8_t n, uint32_t v);
|
||||
String encodeGPS(float latitude, float longitude, const String& overlay, const String& symbol);
|
||||
void generateBeacons();
|
||||
double calculateDistanceCourse(double latitude, double longitude);
|
||||
String decodeEncodedGPS(const String& packet);
|
||||
String getReceivedGPS(const String& packet);
|
||||
String getDistanceAndComment(const String& packet);
|
||||
|
||||
}
|
||||
|
||||
|
||||
+8
-8
@@ -6,14 +6,14 @@
|
||||
|
||||
namespace LoRa_Utils {
|
||||
|
||||
void setup();
|
||||
void sendNewPacket(const String& newPacket);
|
||||
String packetSanitization(const String& packet);
|
||||
String receivePacket();
|
||||
void changeFreqTx();
|
||||
void changeFreqRx();
|
||||
void startReceive(); // ???
|
||||
void sleepRadio();
|
||||
void setup();
|
||||
void sendNewPacket(const String& newPacket);
|
||||
String packetSanitization(const String& packet);
|
||||
String receivePacket();
|
||||
void changeFreqTx();
|
||||
void changeFreqRx();
|
||||
void startReceive(); // ???
|
||||
void sleepRadio();
|
||||
|
||||
}
|
||||
|
||||
|
||||
+7
-7
@@ -11,13 +11,13 @@
|
||||
|
||||
namespace POWER_Utils {
|
||||
|
||||
double getBatteryVoltage();
|
||||
bool isBatteryConnected();
|
||||
void activateMeasurement();
|
||||
void activateLoRa();
|
||||
void deactivateLoRa();
|
||||
bool begin(TwoWire &port);
|
||||
void setup();
|
||||
double getBatteryVoltage();
|
||||
bool isBatteryConnected();
|
||||
void activateMeasurement();
|
||||
void activateLoRa();
|
||||
void deactivateLoRa();
|
||||
bool begin(TwoWire &port);
|
||||
void setup();
|
||||
|
||||
}
|
||||
|
||||
|
||||
+14
-14
@@ -8,24 +8,24 @@ public:
|
||||
long millis;
|
||||
String packet;
|
||||
int RSSI;
|
||||
float SNR;
|
||||
float SNR;
|
||||
};
|
||||
|
||||
namespace Utils {
|
||||
|
||||
void processStatus();
|
||||
String getLocalIP();
|
||||
void setupDisplay();
|
||||
void activeStations();
|
||||
void checkBeaconInterval();
|
||||
void checkDisplayInterval();
|
||||
void validateFreqs();
|
||||
void typeOfPacket(const String& packet, uint8_t packetType);
|
||||
void print(const String& text);
|
||||
void println(const String& text);
|
||||
void checkRebootMode();
|
||||
void checkRebootTime();
|
||||
void checkSleepByLowBatteryVoltage(uint8_t mode);
|
||||
void processStatus();
|
||||
String getLocalIP();
|
||||
void setupDisplay();
|
||||
void activeStations();
|
||||
void checkBeaconInterval();
|
||||
void checkDisplayInterval();
|
||||
void validateFreqs();
|
||||
void typeOfPacket(const String& packet, uint8_t packetType);
|
||||
void print(const String& text);
|
||||
void println(const String& text);
|
||||
void checkRebootMode();
|
||||
void checkRebootTime();
|
||||
void checkSleepByLowBatteryVoltage(uint8_t mode);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user