mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2024-12-30 05:29:47 +00:00
Firmware: fix minor logging bug
Change-Id: I4170cb4c1313b1caabf3367a0a9aeac167e356dc
This commit is contained in:
parent
336a0188c3
commit
db2b33e36f
@ -454,7 +454,7 @@ void loghex1(uint8_t i) {
|
||||
if (i < 10) {
|
||||
i += '0';
|
||||
} else {
|
||||
i += 'A';
|
||||
i += ('A' - 10);
|
||||
}
|
||||
logc(i);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user