Skip to content

Commit 9e7221c

Browse files
committed
Illuminate GNSS LED when PPP converged.
1 parent 12f47df commit 9e7221c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmware/RTK_Everywhere/Tasks.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -1212,8 +1212,8 @@ void tickerGnssLedUpdate()
12121212
{
12131213
// Update the GNSS LED according to our state
12141214

1215-
// Solid once RTK Fix is achieved
1216-
if (gnssIsRTKFix() == true)
1215+
// Solid once RTK Fix is achieved, or PPP converges
1216+
if (gnssIsRTKFix() == true || gnssIsPppConverged())
12171217
{
12181218
ledcWrite(ledGnssChannel, 255);
12191219
}

0 commit comments

Comments
 (0)