SQ9MDD / TTGO-T-Beam-LoRa-APRS

Use TTGO T-Beam as LoRa APRS Tracker
64 stars 23 forks source link

Bug: Empty Relay-Path leads to invalid packages #63

Closed mi-gri closed 2 years ago

mi-gri commented 2 years ago

When I delete the "WIDE1-1" from the relay-path field and want to send with an empty path, the packets are generated incorrectly: DO3BOX-3>APLO01,:!L4hNsP/=S>!&H/A=000421Lora Tracker Batt=4.17V It looks like the if-query in line 244 of the TTGO-T-Beam-LoRa-APRS is not working.

mi-gri commented 2 years ago

Fixed it in my fork by changing the lines 244-248 to if ( ! relay_path ){ outString += ">APLO01:!"; } else { outString += ">APLO01," + relay_path + ":!"; }

mi-gri commented 2 years ago

Correction: Nope. My fix don't work either.