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

Function bitWrite64

libraries/bitHelpers/bitHelpers.cpp:597–601  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

595
596
597void bitWrite64(uint64_t & x, uint8_t bit, uint8_t value)
598{
599 if (value) bitSet64(x, bit);
600 else bitClear64(x, bit);
601}
602
603
604////////////////////////////////////////////////////

Callers

nothing calls this directly

Calls 2

bitSet64Function · 0.85
bitClear64Function · 0.85

Tested by

no test coverage detected