Fix reversed GPS PINs on G2 and enable timesync

This commit is contained in:
liquidraver 2025-10-21 12:23:45 +02:00
parent 4687ab74e3
commit 0920dc6663
2 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ AutoDiscoverRTCClock rtc_clock(fallback_clock);
#if ENV_INCLUDE_GPS
#include <helpers/sensors/MicroNMEALocationProvider.h>
MicroNMEALocationProvider nmea = MicroNMEALocationProvider(Serial1);
MicroNMEALocationProvider nmea = MicroNMEALocationProvider(Serial1, &rtc_clock);
EnvironmentSensorManager sensors = EnvironmentSensorManager(nmea);
#else
EnvironmentSensorManager sensors;