Refactor sat count checks and GPS trust code
[betaflight.git] / src / main / io / gps.h
blob5da3236aa613bd9822da049461c81229abb562e2
1 /*
2 * This file is part of Cleanflight and Betaflight.
4 * Cleanflight and Betaflight are free software. You can redistribute
5 * this software and/or modify this software under the terms of the
6 * GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or (at your option)
8 * any later version.
10 * Cleanflight and Betaflight are distributed in the hope that they
11 * will be useful, but WITHOUT ANY WARRANTY; without even the implied
12 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this software.
18 * If not, see <http://www.gnu.org/licenses/>.
21 #pragma once
23 #include "common/axis.h"
24 #include "common/time.h"
26 #include "pg/pg.h"
28 #define GPS_DEGREES_DIVIDER 10000000L
29 #define GPS_X 1
30 #define GPS_Y 0
32 typedef enum {
33 GPS_LATITUDE,
34 GPS_LONGITUDE
35 } gpsCoordinateType_e;
37 typedef enum {
38 GPS_NMEA = 0,
39 GPS_UBLOX,
40 GPS_MSP
41 } gpsProvider_e;
43 typedef enum {
44 SBAS_AUTO = 0,
45 SBAS_EGNOS,
46 SBAS_WAAS,
47 SBAS_MSAS,
48 SBAS_GAGAN,
49 SBAS_NONE
50 } sbasMode_e;
52 #define SBAS_MODE_MAX SBAS_GAGAN
54 typedef enum {
55 UBLOX_AIRBORNE = 0,
56 UBLOX_PEDESTRIAN,
57 UBLOX_DYNAMIC
58 } ubloxMode_e;
60 typedef enum {
61 GPS_BAUDRATE_115200 = 0,
62 GPS_BAUDRATE_57600,
63 GPS_BAUDRATE_38400,
64 GPS_BAUDRATE_19200,
65 GPS_BAUDRATE_9600
66 } gpsBaudRate_e;
68 typedef enum {
69 GPS_AUTOCONFIG_OFF = 0,
70 GPS_AUTOCONFIG_ON
71 } gpsAutoConfig_e;
73 typedef enum {
74 GPS_AUTOBAUD_OFF = 0,
75 GPS_AUTOBAUD_ON
76 } gpsAutoBaud_e;
78 typedef enum {
79 UBLOX_ACK_IDLE = 0,
80 UBLOX_ACK_WAITING,
81 UBLOX_ACK_GOT_ACK,
82 UBLOX_ACK_GOT_NACK
83 } ubloxAckState_e;
85 #define GPS_REQUIRED_SAT_COUNT 8
86 #define GPS_MINIMUM_SAT_COUNT 4
87 #define GPS_BAUDRATE_MAX GPS_BAUDRATE_9600
89 typedef struct gpsConfig_s {
90 gpsProvider_e provider;
91 sbasMode_e sbasMode;
92 gpsAutoConfig_e autoConfig;
93 gpsAutoBaud_e autoBaud;
94 uint8_t gps_ublox_use_galileo;
95 ubloxMode_e gps_ublox_mode;
96 uint8_t gps_set_home_point_once;
97 uint8_t gps_use_3d_speed;
98 uint8_t sbas_integrity;
99 uint8_t gpsRequiredSats;
100 uint8_t gpsMinimumSats;
101 } gpsConfig_t;
103 PG_DECLARE(gpsConfig_t, gpsConfig);
105 typedef struct gpsCoordinateDDDMMmmmm_s {
106 int16_t dddmm;
107 int16_t mmmm;
108 } gpsCoordinateDDDMMmmmm_t;
110 /* LLH Location in NEU axis system */
111 typedef struct gpsLocation_s {
112 int32_t lat; // latitude * 1e+7
113 int32_t lon; // longitude * 1e+7
114 int32_t altCm; // altitude in 0.01m
115 } gpsLocation_t;
117 typedef struct gpsSolutionData_s {
118 gpsLocation_t llh;
119 uint16_t speed3d; // speed in 0.1m/s
120 uint16_t groundSpeed; // speed in 0.1m/s
121 uint16_t groundCourse; // degrees * 10
122 uint16_t hdop; // generic HDOP value (*100)
123 uint8_t numSat;
124 } gpsSolutionData_t;
126 typedef struct gpsData_s {
127 uint32_t errors; // gps error counter - crc error/lost of data/sync etc..
128 uint32_t timeouts;
129 uint32_t lastMessage; // last time valid GPS data was received (millis)
130 uint32_t lastLastMessage; // last-last valid GPS message. Used to calculate delta.
132 uint32_t state_position; // incremental variable for loops
133 uint32_t state_ts; // timestamp for last state_position increment
134 uint8_t state; // GPS thread state. Used for detecting cable disconnects and configuring attached devices
135 uint8_t baudrateIndex; // index into auto-detecting or current baudrate
137 uint8_t ackWaitingMsgId; // Message id when waiting for ACK
138 uint8_t ackTimeoutCounter; // Ack timeout counter
139 ubloxAckState_e ackState;
140 bool ubloxUsePVT;
141 bool ubloxUseSAT;
142 } gpsData_t;
144 #define GPS_PACKET_LOG_ENTRY_COUNT 21 // To make this useful we should log as many packets as we can fit characters a single line of a OLED display.
145 extern char gpsPacketLog[GPS_PACKET_LOG_ENTRY_COUNT];
147 extern int32_t GPS_home[2];
148 extern uint16_t GPS_distanceToHome; // distance to home point in meters
149 extern uint32_t GPS_distanceToHomeCm; // distance to home point in cm
150 extern int16_t GPS_directionToHome; // direction to home or hol point in degrees
151 extern uint32_t GPS_distanceFlownInCm; // distance flown since armed in centimeters
152 extern int16_t GPS_verticalSpeedInCmS; // vertical speed in cm/s
153 extern int16_t GPS_angle[ANGLE_INDEX_COUNT]; // it's the angles that must be applied for GPS correction
154 extern float GPS_scaleLonDown; // this is used to offset the shrinking longitude as we go towards the poles
155 extern int16_t nav_takeoff_bearing;
157 typedef enum {
158 GPS_DIRECT_TICK = 1 << 0,
159 GPS_MSP_UPDATE = 1 << 1
160 } gpsUpdateToggle_e;
162 extern gpsData_t gpsData;
163 extern gpsSolutionData_t gpsSol;
165 #define GPS_SV_MAXSATS_LEGACY 16
166 #define GPS_SV_MAXSATS_M8N 32
167 #define GPS_SV_MAXSATS_M9N 42
169 extern uint8_t GPS_update; // toogle to distinct a GPS position update (directly or via MSP)
170 extern uint32_t GPS_packetCount;
171 extern uint32_t GPS_svInfoReceivedCount;
172 extern uint8_t GPS_numCh; // Number of channels
173 extern uint8_t GPS_svinfo_chn[GPS_SV_MAXSATS_M8N]; // When NumCh is 16 or less: Channel number
174 // When NumCh is more than 16: GNSS Id
175 // 0 = GPS, 1 = SBAS, 2 = Galileo, 3 = BeiDou
176 // 4 = IMES, 5 = QZSS, 6 = Glonass
177 extern uint8_t GPS_svinfo_svid[GPS_SV_MAXSATS_M8N]; // Satellite ID
178 extern uint8_t GPS_svinfo_quality[GPS_SV_MAXSATS_M8N]; // When NumCh is 16 or less: Bitfield Qualtity
179 // When NumCh is more than 16: flags
180 // bits 2..0: signal quality indicator
181 // 0 = no signal
182 // 1 = searching signal
183 // 2 = signal acquired
184 // 3 = signal detected but unusable
185 // 4 = code locked and time synchronized
186 // 5,6,7 = code and carrier locked and time synchronized
187 // bit 3:
188 // 1 = signal currently being used for navigaion
189 // bits 5..4: signal health flag
190 // 0 = unknown
191 // 1 = healthy
192 // 2 = unhealthy
193 // bit 6:
194 // 1 = differential correction data available for this SV
195 // bit 7:
196 // 1 = carrier smoothed pseudorange used
197 extern uint8_t GPS_svinfo_cno[GPS_SV_MAXSATS_M8N]; // Carrier to Noise Ratio (Signal Strength)
199 #define GPS_DBHZ_MIN 0
200 #define GPS_DBHZ_MAX 55
202 #define TASK_GPS_RATE 100
203 #define TASK_GPS_RATE_FAST 1000
205 void gpsInit(void);
206 void gpsUpdate(timeUs_t currentTimeUs);
207 bool gpsNewFrame(uint8_t c);
208 bool gpsIsHealthy(void); // Check for healthy communications
209 struct serialPort_s;
210 void gpsEnablePassthrough(struct serialPort_s *gpsPassthroughPort);
211 void onGpsNewData(void);
212 void GPS_reset_home_position(void);
213 void GPS_calc_longitude_scaling(int32_t lat);
214 void GPS_distance_cm_bearing(int32_t *currentLat1, int32_t *currentLon1, int32_t *destinationLat2, int32_t *destinationLon2, uint32_t *dist, int32_t *bearing);
215 void gpsSetFixState(bool state);