From 257c47e428d20d41a1071c7fced9bdb65b423ef6 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Fri, 19 Mar 2021 21:06:07 +0100 Subject: [PATCH] use correct destination --- src/LoRa_APRS_Tracker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LoRa_APRS_Tracker.cpp b/src/LoRa_APRS_Tracker.cpp index 356e7d5..ac9f2b8 100644 --- a/src/LoRa_APRS_Tracker.cpp +++ b/src/LoRa_APRS_Tracker.cpp @@ -156,7 +156,7 @@ void loop() APRSMessage msg; msg.setSource(Config.callsign); - msg.setDestination("APLT0"); + msg.setDestination("APLT00"); String lat = create_lat_aprs(gps.location.rawLat()); String lng = create_long_aprs(gps.location.rawLng());