mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-02-18 13:44:25 +01:00
19 lines
429 B
C++
19 lines
429 B
C++
#ifndef STATION_UTILS_H_
|
|
#define STATION_UTILS_H_
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
namespace STATION_Utils {
|
|
|
|
void deleteNotHeard();
|
|
void updateLastHeard(const String& station);
|
|
bool wasHeard(const String& station);
|
|
void clean25SegBuffer();
|
|
bool check25SegBuffer(const String& station, const String& textMessage);
|
|
void processOutputPacketBuffer();
|
|
void addToOutputPacketBuffer(const String& packet);
|
|
|
|
}
|
|
|
|
#endif |