# HG changeset patch # User Ideenmodellierer # Date 1734897128 -3600 # Node ID 80ae8ea7f0a0fadb870a84a73e4f5a3e3fcda620 # Parent aad1a6b9aaeca7dd7c87e6baba5f8c7bae01ebbd GNSS set to full power at startup: In case of an reset the module would continue in sleep mode if it was in this state. To avoid this the module will now always set to full power at startup of the RTE. diff -r aad1a6b9aaec -r 80ae8ea7f0a0 Small_CPU/Src/uartProtocol_GNSS.c --- a/Small_CPU/Src/uartProtocol_GNSS.c Thu Dec 19 22:16:36 2024 +0100 +++ b/Small_CPU/Src/uartProtocol_GNSS.c Sun Dec 22 20:52:08 2024 +0100 @@ -289,7 +289,7 @@ break; case UART_GNSS_LOADCONF_2: gnssState = UART_GNSS_SETMODE_MOBILE; break; - case UART_GNSS_SETMODE_MOBILE: gnssState = UART_GNSS_IDLE; + case UART_GNSS_SETMODE_MOBILE: gnssState = UART_GNSS_PWRUP; break; default: break;