comparison Small_CPU/Src/GNSS.c @ 942:06aaccaf2e02 Evo_2_23

Power down gnss module during dive: The gnss modul will now be send to powerdown at the start of the dive. After end of dive the module returns to normal operation. For development / test purpose a new simulated dive profile has been added.
author Ideenmodellierer
date Mon, 16 Dec 2024 19:09:00 +0100
parents 4a406e873a95
children
comparison
equal deleted inserted replaced
941:6d8ae8fbccf5 942:06aaccaf2e02
62 * Parse data to unique chip ID standard. 62 * Parse data to unique chip ID standard.
63 * Look at: 32.19.1.1 u-blox 8 Receiver description 63 * Look at: 32.19.1.1 u-blox 8 Receiver description
64 * @param GNSS Pointer to main GNSS structure. 64 * @param GNSS Pointer to main GNSS structure.
65 */ 65 */
66 void GNSS_ParseUniqID(GNSS_StateHandle *GNSS) { 66 void GNSS_ParseUniqID(GNSS_StateHandle *GNSS) {
67 for (int var = 0; var < 5; ++var) { 67 for (int var = 0; var < 5; var++) {
68 GNSS->uniqueID[var] = GNSS_Handle.uartWorkingBuffer[10 + var]; 68 GNSS->uniqueID[var] = GNSS_Handle.uartWorkingBuffer[10 + var];
69 } 69 }
70 } 70 }
71 71
72 /*! 72 /*!