Mercurial > public > ostc4
comparison Common/Inc/data_central.h @ 940:4a406e873a95 Evo_2_23
GNSS improvments:
- Introduce alive indicator; Status string will switch between white and grey with every message received from the module
- shorten visibility of "shutting down" string. a busy wait of 1 second was applied in the sleep prepare function. The time is now included in the time needed to prepare the module for low power operation
- make sure GPIO is properly initialized after deep sleep
author | Ideenmodellierer |
---|---|
date | Thu, 12 Dec 2024 21:12:07 +0100 |
parents | 5a9bc2e6112d |
children | 6d8ae8fbccf5 |
comparison
equal
deleted
inserted
replaced
939:f41974734268 | 940:4a406e873a95 |
---|---|
167 | 167 |
168 typedef struct | 168 typedef struct |
169 { | 169 { |
170 float fLat; | 170 float fLat; |
171 float fLon; | 171 float fLon; |
172 uint8_t alive; | |
172 uint8_t fixType; | 173 uint8_t fixType; |
173 uint8_t numSat; /* number of available satellites */ | 174 uint8_t numSat; /* number of available satellites */ |
174 uint8_t signalQual[4]; /* signal quality indicator for x sats */ | 175 uint8_t signalQual[4]; /* signal quality indicator for x sats */ |
175 } SGnssInfo; | 176 } SGnssInfo; |
176 | 177 |