LoRa_APRS_iGate/src/digi_utils.h
richonguzman 9159362796 update
2024-11-06 10:07:44 -03:00

16 lines
360 B
C++

#ifndef DIGI_UTILS_H_
#define DIGI_UTILS_H_
#include <Arduino.h>
namespace DIGI_Utils {
String buildPacket(const String& path, const String& packet, bool thirdParty, bool crossFreq);
String generateDigipeatedPacket(const String& packet, bool thirdParty);
void processLoRaPacket(const String& packet);
void checkEcoMode();
}
#endif