1
0
forked from me/IronOS

DrawHex dynamicLength

This commit is contained in:
Ben V. Brown
2022-06-16 22:40:21 +10:00
parent 222c251a98
commit 21811b7ad6
3 changed files with 7 additions and 5 deletions

View File

@@ -758,8 +758,10 @@ void showDebugMenu(void) {
// Print device ID Numbers
{
uint64_t id = getDeviceID();
OLED::drawHex((uint32_t)(id >> 32), FontStyle::SMALL);
OLED::drawHex((uint32_t)(id & 0xFFFFFFFF), FontStyle::SMALL);
OLED::drawHex((uint32_t)(id >> 32), FontStyle::SMALL, 2);
OLED::drawHex((uint32_t)(id >> 32), FontStyle::SMALL, 8);
OLED::drawHex((uint32_t)(id & 0xFFFFFFFF), FontStyle::SMALL, 8);
}
break;
case 10: