Skip to content

Commit 16b1a9d

Browse files
committed
testing new APRSPacketLib
1 parent 881c769 commit 16b1a9d

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

common_settings.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ lib_deps =
3636
mikalhart/TinyGPSPlus @ 1.0.3
3737
paulstoffregen/Time @ 1.6.1
3838
peterus/esp-logger @ 1.0.0
39-
richonguzman/APRSPacketLib @ 0.9.0
39+
richonguzman/APRSPacketLib @ 1.0.0
4040
shaggydog/OneButton @ 1.5.0
4141
display_libs =
4242
adafruit/Adafruit GFX Library @ 1.11.9

src/LoRa_APRS_Tracker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ TinyGPSPlus gps;
7575
BluetoothSerial SerialBT;
7676
#endif
7777

78-
String versionDate = "2025-08-09";
78+
String versionDate = "2025-08-10";
7979

8080
uint8_t myBeaconsIndex = 0;
8181
int myBeaconsSize = Config.beacons.size();

src/keyboard_utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ namespace KEYBOARD_Utils {
746746
} else if (key == 13 && messageText.length() > 0) {
747747
messageText.trim();
748748
if (messageText.length() > 67) messageText = messageText.substring(0, 67);
749-
String packet = APRSPacketLib::generateBase91GPSBeaconPacket(currentBeacon->callsign, "APLRT1", Config.path, currentBeacon->overlay, APRSPacketLib::encodeGPSIntoBase91(gps.location.lat(),gps.location.lng(), gps.course.deg(), gps.speed.knots(), currentBeacon->symbol, Config.sendAltitude, gps.altitude.feet(), sendStandingUpdate, "GPS"));
749+
String packet = APRSPacketLib::generateBase91GPSBeaconPacket(currentBeacon->callsign, "APLRT1", Config.path, currentBeacon->overlay, APRSPacketLib::encodeGPSIntoBase91(gps.location.lat(),gps.location.lng(), gps.course.deg(), gps.speed.knots(), currentBeacon->symbol, Config.sendAltitude, gps.altitude.feet(), sendStandingUpdate));
750750
packet += messageText;
751751
displayShow("<<< TX >>>", "", packet,100);
752752
LoRa_Utils::sendNewPacket(packet);

src/station_utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ namespace STATION_Utils {
200200
if (miceActive) {
201201
packet = APRSPacketLib::generateMiceGPSBeaconPacket(currentBeacon->micE, currentBeacon->callsign, currentBeacon->symbol, currentBeacon->overlay, path, gps.location.lat(), gps.location.lng(), gps.course.deg(), gps.speed.knots(), gps.altitude.meters());
202202
} else {
203-
packet = APRSPacketLib::generateBase91GPSBeaconPacket(currentBeacon->callsign, "APLRT1", path, currentBeacon->overlay, APRSPacketLib::encodeGPSIntoBase91(gps.location.lat(),gps.location.lng(), gps.course.deg(), gps.speed.knots(), currentBeacon->symbol, Config.sendAltitude, gps.altitude.feet(), sendStandingUpdate, "GPS"));
203+
packet = APRSPacketLib::generateBase91GPSBeaconPacket(currentBeacon->callsign, "APLRT1", path, currentBeacon->overlay, APRSPacketLib::encodeGPSIntoBase91(gps.location.lat(),gps.location.lng(), gps.course.deg(), gps.speed.knots(), currentBeacon->symbol, Config.sendAltitude, gps.altitude.feet(), sendStandingUpdate));
204204
}
205205

206206
String batteryVoltage = BATTERY_Utils::getBatteryInfoVoltage();

0 commit comments

Comments
 (0)