Skip to content

Commit b04b4e4

Browse files
committed
Push RTCM to processRTCM() from UART task
1 parent 6a7db3f commit b04b4e4

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

Firmware/RTK_Everywhere/Tasks.ino

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -479,6 +479,13 @@ void processUart1Message(SEMP_PARSE_STATE *parse, uint16_t type)
479479
}
480480
}
481481

482+
// Determine where to send RTCM data
483+
if (inBaseMode() && type == RTK_RTCM_PARSER_INDEX)
484+
{
485+
// Pass data along to NTRIP Server, or ESP-NOW radio
486+
processRTCM(parse->buffer, parse->length);
487+
}
488+
482489
// Determine if we are using the PPL
483490
if (gnssPlatform == PLATFORM_UM980)
484491
{

0 commit comments

Comments
 (0)