mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-05-07 05:34:26 +02:00
mode4 without PATH corrected
This commit is contained in:
+1
-1
@@ -27,7 +27,7 @@ void processPacket(String packet) {
|
||||
} else if (stationMode ==4){
|
||||
Utils::typeOfPacket(packet);
|
||||
if (packet.indexOf("WIDE1-1") == -1) {
|
||||
loraPacket = packet.substring(3,packet.indexOf(":")) + "," + Config.callsign + "*" + packet.indexOf(":");
|
||||
loraPacket = packet.substring(3,packet.indexOf(":")) + "," + Config.callsign + "*" + packet.substring(packet.indexOf(":"));
|
||||
} else {
|
||||
loraPacket = packet.substring(3,packet.indexOf(",")+1) + Config.callsign + "*" + packet.substring(packet.indexOf(","));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user