Skip to content

Commit 3960183

Browse files
committed
Update Example1_RAWX.ino
1 parent 746ad2b commit 3960183

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/NEO-F10N/Example1_RAWX/Example1_RAWX.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,9 @@ void newRAWX(UBX_RXM_RAWX_data_t *ubxDataStruct)
209209
else if (ubxDataStruct->blocks[block].svId < 100) sprintf(&SV[14], "%d ", ubxDataStruct->blocks[block].svId); // Align the svId
210210
else sprintf(&SV[14], "%d ", ubxDataStruct->blocks[block].svId); // Align the svId
211211

212-
if (ubxDataStruct->blocks[block].cno < 10) sprintf(&SV[18], " %d ", ubxDataStruct->blocks[block].cno); // Align the svId
213-
else if (ubxDataStruct->blocks[block].cno < 100) sprintf(&SV[18], " %d ", ubxDataStruct->blocks[block].cno); // Align the svId
214-
else sprintf(&SV[18], "%d ", ubxDataStruct->blocks[block].cno); // Align the svId
212+
if (ubxDataStruct->blocks[block].cno < 10) sprintf(&SV[18], " %d ", ubxDataStruct->blocks[block].cno); // Align the cno
213+
else if (ubxDataStruct->blocks[block].cno < 100) sprintf(&SV[18], " %d ", ubxDataStruct->blocks[block].cno); // Align the cno
214+
else sprintf(&SV[18], "%d ", ubxDataStruct->blocks[block].cno); // Align the cno
215215

216216
// Print cno as a bar chart
217217
uint8_t cno;

0 commit comments

Comments
 (0)