LoRa_APRS_iGate/include/syslog_utils.h

14 lines
224 B
C
Raw Normal View History

#ifndef SYSLOG_H_
#define SYSLOG_H_
#include <Arduino.h>
2024-02-25 14:53:16 +01:00
namespace SYSLOG_Utils {
2024-06-06 05:49:16 +02:00
void log(const uint8_t type ,const String& packet, const int rssi, const float snr, const int freqError);
2024-01-03 02:12:10 +01:00
void setup();
}
#endif