mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-22 16:50:16 +01:00
16 lines
360 B
C++
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 |