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 10:53:16 -03:00
namespace SYSLOG_Utils {
2024-06-05 23:49:16 -04:00
void log(const uint8_t type ,const String& packet, const int rssi, const float snr, const int freqError);
2024-01-02 22:12:10 -03:00
void setup();
}
#endif