| 537 | } |
| 538 | |
| 539 | void HexHelper::printFullByte(INT8U b) { |
| 540 | if (b < 0x10) { |
| 541 | Serial.print('0'); |
| 542 | // dbg0('0'); |
| 543 | } |
| 544 | Serial.print(b, HEX); |
| 545 | //dbgH(b); |
| 546 | } |
| 547 | |
| 548 | void HexHelper::printNibble(INT8U b) { |
| 549 | Serial.print(b & 0x0F, HEX); |
nothing calls this directly
no outgoing calls
no test coverage detected