From bb8309882c5e846835efc1d8aefbc6a1d7c607f5 Mon Sep 17 00:00:00 2001 From: Alexey Ryabov <6006l1k@gmail.com> Date: Wed, 19 May 2021 15:47:39 +0300 Subject: [PATCH] Fixed src/system/gps.c HasFix variable type from double to bool --- src/system/gps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/gps.c b/src/system/gps.c index 9bd372272..303df8cc3 100644 --- a/src/system/gps.c +++ b/src/system/gps.c @@ -47,7 +47,7 @@ const int32_t MaxWestPosition = 8388608; // -2^23 NmeaGpsData_t NmeaGpsData; -static double HasFix = false; +static bool HasFix = false; static double Latitude = 0; static double Longitude = 0;