You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When referring to the code converting to Lat/Long for APRS transmission, there is a bug. The code only covers when dm_lon is less than 1000, but, should be extended to include <100 and <10:
Otherwise, this causes cases similar to below, where you can see that the longitude has a space in it since the case where dm_lon is less than 100 (as 10.83 is) is not covered.
When referring to the code converting to Lat/Long for APRS transmission, there is a bug. The code only covers when
dm_lon
is less than 1000, but, should be extended to include <100 and <10:LightAPRS-1.0/LightAPRS-vehicle/LightAPRS-vehicle.ino
Lines 282 to 287 in 82fba03
Otherwise, this causes cases similar to below, where you can see that the longitude has a space in it since the case where
dm_lon
is less than 100 (as 10.83 is) is not covered.I added a the following to resolve the issue:
There should probably be similar tweaks to the latitude, allowing for operation close to the equator - however, this is not an issue for me...
Cheers, George - M1GEO.
The text was updated successfully, but these errors were encountered: