comparison Small_CPU/Inc/GNSS.h @ 955:9b29995d6619 Evo_2_23 tip

GNSS backup position: In the previous implementation a position had to be provided by the module in order to be stored in the log. This may cause a wrong position entry (default) in the log, for example if signal is lost while preparing for the dive in the water. To avoid this the last received position will be used for ~2 hours => Diver may take the dive side position before starting with the dive preparation. The last known position will be display in the GNSS position search window as well.
author Ideenmodellierer
date Wed, 01 Jan 2025 20:37:17 +0100
parents abdd72c8b567
children
comparison
equal deleted inserted replaced
954:4e4fbd73e329 955:9b29995d6619
91 uint8_t numSat; 91 uint8_t numSat;
92 uint8_t statSat[4]; 92 uint8_t statSat[4];
93 93
94 uint8_t alive; 94 uint8_t alive;
95 95
96 float last_fLon; /* last known position storage and time stamp */
97 float last_fLat;
98 float last_hour;
99
96 }GNSS_StateHandle; 100 }GNSS_StateHandle;
97 101
98 GNSS_StateHandle GNSS_Handle; 102 GNSS_StateHandle GNSS_Handle;
99 103
100 104