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

Method parseFullByte

src/can-serial.cpp:566–568  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

564}
565
566INT8U HexHelper::parseFullByte(INT8U H, INT8U L) {
567 return (parseNibble(H) << 4) + parseNibble(L);
568}
569
570INT8U HexHelper::parseNibbleWithLimit(INT8U hex, INT8U limit) {
571 INT8U ret = parseNibble(hex);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected