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

Method getCRC

libraries/CRC/CRC8.cpp:69–75  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67
68
69uint8_t CRC8::getCRC()
70{
71 uint8_t rv = _crc;
72 if (_reverseOut) rv = _reverse(rv);
73 rv ^= _endMask;
74 return rv;
75}
76
77
78void CRC8::_update(uint8_t value)

Callers 5

unittestFunction · 0.45
unittestFunction · 0.45
unittestFunction · 0.45
unittestFunction · 0.45
unittestFunction · 0.45

Calls

no outgoing calls

Tested by 5

unittestFunction · 0.36
unittestFunction · 0.36
unittestFunction · 0.36
unittestFunction · 0.36
unittestFunction · 0.36