MCPcopy Create free account
hub / github.com/Seeed-Studio/Seeed_Arduino_CAN / printFullByte

Method printFullByte

src/can-serial.cpp:539–546  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

537}
538
539void 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
548void HexHelper::printNibble(INT8U b) {
549 Serial.print(b & 0x0F, HEX);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected