more const cleaning

This commit is contained in:
richonguzman
2024-06-05 23:49:16 -04:00
parent 18de124c04
commit c89ca7316f
10 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ WiFiUDP udpClient;
namespace SYSLOG_Utils {
void log(uint8_t type, const String& packet, int rssi, float snr, int freqError) {
void log(const uint8_t type, const String& packet, const int rssi, const float snr, const int freqError) {
if (Config.syslog.active && WiFi.status() == WL_CONNECTED) {
String syslogPacket = "<165>1 - ";
syslogPacket.concat(Config.callsign);