mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-22 08:40:16 +01:00
27 lines
670 B
C++
27 lines
670 B
C++
#ifndef APRS_IS_UTILS_H_
|
|
#define APRS_IS_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace APRS_IS_Utils {
|
|
|
|
void upload(const String& line);
|
|
void connect();
|
|
|
|
void checkStatus();
|
|
String checkForStartingBytes(const String& packet);
|
|
|
|
String buildPacketToUpload(const String& packet);
|
|
bool processReceivedLoRaMessage(const String& sender, const String& packet, bool thirdParty);
|
|
void processLoRaPacket(const String& packet);
|
|
|
|
String buildPacketToTx(const String& aprsisPacket, uint8_t packetType);
|
|
void processAPRSISPacket(const String& packet);
|
|
void listenAPRSIS();
|
|
|
|
void firstConnection();
|
|
|
|
}
|
|
|
|
#endif |