| 564 | } |
| 565 | |
| 566 | INT8U HexHelper::parseFullByte(INT8U H, INT8U L) { |
| 567 | return (parseNibble(H) << 4) + parseNibble(L); |
| 568 | } |
| 569 | |
| 570 | INT8U HexHelper::parseNibbleWithLimit(INT8U hex, INT8U limit) { |
| 571 | INT8U ret = parseNibble(hex); |
nothing calls this directly
no outgoing calls
no test coverage detected