Files
LoRa_APRS_iGate/src/station_utils.h
T
richonguzman 48965d5985 code cleaning
2024-01-02 22:12:10 -03:00

16 lines
282 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 checkBuffer();
void updatePacketBuffer(String packet);
}
#endif