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

Method setBitOrder

libraries/FastShiftOut/FastShiftOut.cpp:126–134  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124
125
126bool FastShiftOut::setBitOrder(const uint8_t bitOrder)
127{
128 if ((bitOrder == LSBFIRST) || (bitOrder == MSBFIRST))
129 {
130 _bitOrder = bitOrder;
131 return true;
132 };
133 return false;
134}
135
136
137uint8_t FastShiftOut::getBitOrder(void)

Callers 1

unittestFunction · 0.45

Calls

no outgoing calls

Tested by 1

unittestFunction · 0.36