MCPcopy Create free account
hub / github.com/RobTillaart/Arduino / hByte

Function hByte

libraries/AvrHeap/avrheap.cpp:55–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

53
54
55size_t hByte(Print& p, byte val)
56{
57 size_t len = hNibble(p, val >> 4);
58 return len + hNibble(p, val & 0x0F);
59}
60
61
62size_t hWord(Print& p, uint16_t val)

Callers 2

hWordFunction · 0.85
dumpRFunction · 0.85

Calls 1

hNibbleFunction · 0.85

Tested by

no test coverage detected