LoRa_APRS_iGate/src/lora_utils.h
2024-06-05 23:49:16 -04:00

20 lines
377 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(const String& packet);
String receivePacket();
void changeFreqTx();
void changeFreqRx();
void startReceive(); // ???
void sleepRadio();
}
#endif