We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83989bb commit 43e741cCopy full SHA for 43e741c
Firmware/RTK_Everywhere/Tasks.ino
@@ -477,13 +477,11 @@ void processUart1Message(SEMP_PARSE_STATE *parse, uint16_t type)
477
}
478
479
480
- if (tiltIsCorrecting() == true)
+ // Handle LLA compensation due to tilt or outputTipAltitude setting
481
+ if (type == RTK_NMEA_PARSER_INDEX)
482
{
- if (type == RTK_NMEA_PARSER_INDEX)
483
- {
484
- parse->buffer[parse->length++] = '\0'; // Null terminate string
485
- tiltApplyCompensation((char *)parse->buffer, parse->length);
486
- }
+ parse->buffer[parse->length++] = '\0'; // Null terminate string
+ nmeaApplyCompensation((char *)parse->buffer, parse->length);
487
488
489
// Determine where to send RTCM data
0 commit comments