Include signal report into the aprs position packet with messaging support

pull/42/head
sh123 2022-07-06 16:48:39 +03:00
rodzic 3568d28e32
commit ebda9b88cb
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -102,7 +102,7 @@ String Payload::ToString(const String &customComment) const
txt += String(":") + info_;
if (info_.startsWith("=")) {
if (info_.startsWith("=") || info_.startsWith("!")) {
txt += customComment;
}

Wyświetl plik

@ -664,7 +664,7 @@ void Service::processIncomingRawPacketAsServer(const byte *packet, int packetLen
String(frequencyError) +
String("Hz");
}
String textPayload = payload.ToString(config_.EnableSignalReport ? signalReport : String());
LOG_INFO(textPayload);