diff --git a/data_embed/index.html b/data_embed/index.html index 06bac15..6b287ac 100644 --- a/data_embed/index.html +++ b/data_embed/index.html @@ -144,7 +144,7 @@ name="beacon.comment" id="beacon.comment" class="form-control" - placeholder="LoRa APRS" + placeholder="" />
diff --git a/src/gps_utils.cpp b/src/gps_utils.cpp index d40a804..d656131 100644 --- a/src/gps_utils.cpp +++ b/src/gps_utils.cpp @@ -54,7 +54,7 @@ namespace GPS_Utils { Config.backupDigiMode = false; } String beaconPacket = APRSPacketLib::generateBasePacket(Config.callsign, "APLRG1", Config.beacon.path); - String encodedGPS = APRSPacketLib::encodeGPSIntoBase91(Config.beacon.latitude, Config.beacon.longitude, 0, 0, Config.beacon.symbol, true, 0, true, Config.beacon.ambiguityLevel); + String encodedGPS = APRSPacketLib::encodeGPSIntoBase91(Config.beacon.latitude, Config.beacon.longitude, 0, 0, Config.beacon.symbol, false, 0, true, Config.beacon.ambiguityLevel); iGateBeaconPacket = beaconPacket; iGateBeaconPacket += ",qAC:!"; diff --git a/src/utils.cpp b/src/utils.cpp index e952faa..a61b2ac 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -163,7 +163,7 @@ namespace Utils { GPS_Utils::getData(); if (gps.location.isUpdated() && gps.location.lat() != 0.0 && gps.location.lng() != 0.0) { String basePacket = APRSPacketLib::generateBasePacket(Config.callsign, "APLRG1", Config.beacon.path); - String encodedGPS = APRSPacketLib::encodeGPSIntoBase91(gps.location.lat(),gps.location.lng(), 0, 0, Config.beacon.symbol, true, 0, true, Config.beacon.ambiguityLevel); + String encodedGPS = APRSPacketLib::encodeGPSIntoBase91(gps.location.lat(),gps.location.lng(), 0, 0, Config.beacon.symbol, false, 0, true, Config.beacon.ambiguityLevel); beaconPacket = basePacket; beaconPacket += ",qAC:!";