digi patch 1

This commit is contained in:
Ricardo Guzman (Richonguzman)
2026-06-16 10:41:44 -04:00
parent b76aed4d57
commit cbac8b0365
2 changed files with 5 additions and 2 deletions
+3
View File
@@ -1012,6 +1012,9 @@ body{background:var(--msh-bg);color:var(--msh-text);font-family:"Inter",system-u
<option value="3">Own Callsign Path Digi</option>
</select>
</div>
<div class="col-12 mt-2">
+ <small class="text-muted">Mode 4 digipeats packets whose path already contains your callsign, preserving the path and appending a * to your callsign.</small>
+ </div>
<div class="col-12 mt-3">
<label
for="digi.ecoMode"
+2 -2
View File
@@ -68,7 +68,7 @@ ___________________________________________________________________*/
#endif
String versionDate = "2026-06-12";
String versionDate = "2026-06-16";
String versionNumber = "4.0.0";
Configuration Config;
WiFiClient aprsIsClient;
@@ -196,7 +196,7 @@ void loop() {
APRS_IS_Utils::processLoRaPacket(packet); // Send received packet to APRSIS
}
if (Config.loramodule.txActive && (Config.digi.mode == 1 || Config.digi.mode == 2 || backupDigiMode)) { // If Digi enabled
if (Config.loramodule.txActive && (Config.digi.mode == 1 || Config.digi.mode == 2 || Config.digi.mode == 3 || backupDigiMode)) { // If Digi enabled
DIGI_Utils::processLoRaPacket(packet); // Send received packet to Digi
}