Skip to content

Commit 7f8903c

Browse files
committed
Fix MAC print typo
1 parent 9e5b37d commit 7f8903c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Firmware/RTK_Surveyor/Display.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ void updateDisplay()
362362
const uint8_t * rtkMacAddress = getMacAddress();
363363

364364
//Print four characters of MAC
365-
sprintf(macAddress, "%02%02X", rtkMacAddress[4], rtkMacAddress[5]);
365+
sprintf(macAddress, "%02X%02X", rtkMacAddress[4], rtkMacAddress[5]);
366366
oled.setFont(QW_FONT_5X7); //Set font to smallest
367367
oled.setCursor(0, 3);
368368
oled.print(macAddress);

0 commit comments

Comments
 (0)