Skip to content

Commit e1a2563

Browse files
committed
Fix PR #251
1 parent 971a934 commit e1a2563

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Firmware/RTK_Surveyor/NtripServer.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,12 +185,12 @@ bool ntripServerRtcmMessage(uint8_t data)
185185
if (!(data & 3))
186186
{
187187
length = data << 8;
188-
crcState = RTCM_TRANSPORT_STATE_READ_LENGTH_2;
188+
ntripServerCrcState = RTCM_TRANSPORT_STATE_READ_LENGTH_2;
189189
break;
190190
}
191191

192192
//Wait for the preamble byte
193-
crcState = RTCM_TRANSPORT_STATE_WAIT_FOR_PREAMBLE_D3;
193+
ntripServerCrcState = RTCM_TRANSPORT_STATE_WAIT_FOR_PREAMBLE_D3;
194194

195195
//Fall through
196196
// |

0 commit comments

Comments
 (0)