Firmware: fix minor logging bug

Change-Id: I4170cb4c1313b1caabf3367a0a9aeac167e356dc
This commit is contained in:
David Banks 2019-11-09 11:32:36 +00:00
parent 336a0188c3
commit db2b33e36f

View File

@ -454,7 +454,7 @@ void loghex1(uint8_t i) {
if (i < 10) {
i += '0';
} else {
i += 'A';
i += ('A' - 10);
}
logc(i);
}