2 * This file is part of Cleanflight.
4 * Cleanflight is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * Cleanflight is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
23 #include "config/parameter_group.h"
25 #include "common/time.h"
27 #define GPS_DBHZ_MIN 0
28 #define GPS_DBHZ_MAX 55
33 #define GPS_DEGREES_DIVIDER 10000000L
52 #define SBAS_MODE_MAX SBAS_GAGAN
55 GPS_BAUDRATE_115200
= 0,
67 GPS_AUTOCONFIG_OFF
= 0,
77 GPS_DYNMODEL_PEDESTRIAN
= 0,
78 GPS_DYNMODEL_AUTOMOTIVE
,
92 #define GPS_BAUDRATE_MAX GPS_BAUDRATE_9600
94 typedef struct gpsConfig_s
{
95 gpsProvider_e provider
;
97 gpsAutoConfig_e autoConfig
;
98 gpsAutoBaud_e autoBaud
;
99 gpsDynModel_e dynModel
;
100 bool ubloxUseGalileo
;
102 bool ubloxUseGlonass
;
105 gpsBaudRate_e autoBaudMax
;
108 PG_DECLARE(gpsConfig_t
, gpsConfig
);
110 typedef struct gpsCoordinateDDDMMmmmm_s
{
113 } gpsCoordinateDDDMMmmmm_t
;
115 /* LLH Location in NEU axis system */
116 typedef struct gpsLocation_s
{
117 int32_t lat
; // Latitude * 1e+7
118 int32_t lon
; // Longitude * 1e+7
119 int32_t alt
; // Altitude in centimeters (meters * 100)
122 #define HDOP_SCALE (100)
124 typedef struct gpsSolutionData_s
{
127 bool gpsHeartbeat
; // Toggle each update
130 bool validEPE
; // EPH/EPV values are valid - actual accuracy
134 gpsFixType_e fixType
;
141 int16_t groundCourse
;
143 uint16_t eph
; // horizontal accuracy (cm)
144 uint16_t epv
; // vertical accuracy (cm)
146 uint16_t hdop
; // generic HDOP value (*HDOP_SCALE)
148 dateTime_t time
; // GPS time in UTC
153 uint16_t lastMessageDt
;
154 uint32_t errors
; // gps error counter - crc error/lost of data/sync etc..
156 uint32_t packetCount
;
159 extern gpsSolutionData_t gpsSol
;
160 extern gpsStatistics_t gpsStats
;
163 void gpsPreInit(void);
165 // Called periodically from GPS task. Returns true iff the GPS
166 // information was updated.
167 bool gpsUpdate(void);
168 void updateGpsIndicator(timeUs_t currentTimeUs
);
169 bool isGPSHealthy(void);
170 bool isGPSHeadingValid(void);
172 void gpsEnablePassthrough(struct serialPort_s
*gpsPassthroughPort
);
173 void mspGPSReceiveNewData(const uint8_t * bufferPtr
);
175 const char *getGpsHwVersion(void);
176 uint8_t getGpsProtoMajorVersion(void);
177 uint8_t getGpsProtoMinorVersion(void);
179 int getGpsBaudrate(void);
180 int gpsBaudRateToInt(gpsBaudRate_e baudrate
);
182 #if defined(USE_GPS_FAKE)
184 gpsFixType_e fixType
,
190 int16_t groundCourse
,