LoRa_APRS_iGate/include/digi_utils.h
richonguzman 9801545965 update1
2024-12-04 13:59:46 -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