mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-02-08 08:44:28 +01:00
17 lines
302 B
C++
17 lines
302 B
C++
#ifndef STATION_UTILS_H_
|
|
#define STATION_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace STATION_Utils {
|
|
|
|
void deleteNotHeard();
|
|
void updateLastHeard(String station);
|
|
bool wasHeard(String station);
|
|
void processOutputPacketBuffer();
|
|
void addToOutputPacketBuffer(String packet);
|
|
|
|
}
|
|
|
|
#endif |