added /100 to avoid changing STM32 code

pull/79/head
alanbjohnston 5 years ago committed by GitHub
parent 61de25ea31
commit ca77f3fd32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -936,9 +936,9 @@ void get_tlm(void) {
}
printf("\n");
if (sensor[XS1] != 0)
latitude = toAprsFormat(sensor[XS1]);
latitude = toAprsFormat(sensor[XS1]/100.0);
if (sensor[XS2] != 0)
longitude = toAprsFormat(sensor[XS2]);
longitude = toAprsFormat(sensor[XS2]/100.0);
}
}

Loading…
Cancel
Save

Powered by TurnKey Linux.