mirror of
https://github.com/richonguzman/LoRa_APRS_iGate.git
synced 2026-08-05 00:13:40 +02:00
mode4 without PATH corrected
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"callsign": "CD2RXU-11",
|
||||
"stationMode": 2,
|
||||
"stationMode": 4,
|
||||
"iGateComment": "LoRa_APRS_iGate",
|
||||
"wifi": {
|
||||
"AP": [
|
||||
|
||||
+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