This commit is contained in:
richonguzman 2025-04-24 10:36:08 -04:00
parent ae3947b7ea
commit eb5b3aaa25
8 changed files with 137 additions and 87 deletions

View file

@ -8,6 +8,7 @@ namespace LoRa_Utils {
void setup();
void sendNewPacket(const String& newPacket);
String receivePacketFromSleep();
String receivePacket();
void changeFreqTx();
void changeFreqRx();

View file

@ -4,8 +4,10 @@
#include <Arduino.h>
namespace SLEEP_Utils {
void setup();
void setup();
void checkWakeUpFlag();
void startSleeping();
}

View file

@ -27,6 +27,7 @@ namespace STATION_Utils {
bool wasHeard(const String& station);
void clean25SegBuffer();
bool check25SegBuffer(const String& station, const String& textMessage);
void processOutputPacketBufferUltraEcoMode();
void processOutputPacketBuffer();
void addToOutputPacketBuffer(const String& packet);