mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-01-26 02:14:35 +01:00
19 lines
318 B
C++
19 lines
318 B
C++
#ifndef LORA_UTILS_H_
|
|
#define LORA_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace LoRa_Utils {
|
|
|
|
void setup();
|
|
void sendNewPacket(const String &newPacket);
|
|
String packetSanitization(String packet);
|
|
String receivePacket();
|
|
void changeFreqTx();
|
|
void changeFreqRx();
|
|
void startReceive();
|
|
|
|
}
|
|
|
|
#endif |