Mercurial > public > ostc4
comparison Common/Inc/data_central.h @ 931:5a9bc2e6112d Evo_2_23 tip
Added Sat Status Overview:
In addition to the navigation data now information regarding the satelliete and signal status are visualized. To enable the a new command has been added to the communication protocol and the position view has been extended.
author | Ideenmodellierer |
---|---|
date | Tue, 03 Dec 2024 20:32:51 +0100 |
parents | 63c340abd70e |
children |
comparison
equal
deleted
inserted
replaced
930:25948e805406 | 931:5a9bc2e6112d |
---|---|
165 } SDeviceState; | 165 } SDeviceState; |
166 */ | 166 */ |
167 | 167 |
168 typedef struct | 168 typedef struct |
169 { | 169 { |
170 float Longitude; | 170 float fLat; |
171 float Latitude; | 171 float fLon; |
172 } SPositionData; | 172 uint8_t fixType; |
173 uint8_t numSat; /* number of available satellites */ | |
174 uint8_t signalQual[4]; /* signal quality indicator for x sats */ | |
175 } SGnssInfo; | |
173 | 176 |
174 | 177 |
175 /* struct SLifeData | 178 /* struct SLifeData |
176 * contains data all actual data (pressure, stuturation, etc. as received from second ship | 179 * contains data all actual data (pressure, stuturation, etc. as received from second ship |
177 * and has actualGas to be send to Small CPU (second chip) | 180 * and has actualGas to be send to Small CPU (second chip) |
251 float HUD_battery_voltage_V; | 254 float HUD_battery_voltage_V; |
252 | 255 |
253 /* for PSCR Mode */ | 256 /* for PSCR Mode */ |
254 float ppo2Simulated_bar; | 257 float ppo2Simulated_bar; |
255 /* GNSS data */ | 258 /* GNSS data */ |
256 SPositionData gnssPosition; | 259 SGnssInfo gnssData; |
257 | 260 |
258 } SLifeData; | 261 } SLifeData; |
259 | 262 |
260 | 263 |
261 typedef struct | 264 typedef struct |