mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-28 11:24:22 +01:00
21 lines
472 B
C++
21 lines
472 B
C++
#ifndef APRS_IS_UTILS_H_
|
|
#define APRS_IS_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace APRS_IS_Utils {
|
|
|
|
void upload(String line);
|
|
void connect();
|
|
void checkStatus();
|
|
String buildPacketToUpload(String unprocessedPacket);
|
|
String buildPacketToTx(String aprsisPacket);
|
|
bool processReceivedLoRaMessage(String sender, String packet);
|
|
void processLoRaPacket(String packet);
|
|
void processAPRSISPacket(String packet);
|
|
void listenAPRSIS();
|
|
|
|
}
|
|
|
|
#endif |