From 6b073a2136623968dcf7af935af46d9c4a07b8bd Mon Sep 17 00:00:00 2001 From: Kyle Gabriel Date: Mon, 26 Aug 2019 17:53:43 -0400 Subject: [PATCH] Fix sats calculation (#3) --- main/gps.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/gps.ino b/main/gps.ino index 6600a2a..27a0fb2 100644 --- a/main/gps.ino +++ b/main/gps.ino @@ -88,7 +88,7 @@ static void gps_loop() { txBuffer[7] = altitudeGps & 0xFF; hdopGps = _gps.hdop.value() / 10; txBuffer[8] = hdopGps & 0xFF; - sats = _gps.satellites.value() / 10; + sats = _gps.satellites.value(); txBuffer[9] = sats & 0xFF; }