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

Method setBitOrder

libraries/FastShiftInOut/FastShiftInOut.cpp:171–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169
170
171bool FastShiftInOut::setBitOrder(uint8_t bitOrder)
172{
173 if ((bitOrder == LSBFIRST) || (bitOrder == MSBFIRST))
174 {
175 _bitOrder = bitOrder;
176 return true;
177 };
178 return false;
179}
180
181
182uint8_t FastShiftInOut::getBitOrder(void)

Callers 1

unittestFunction · 0.45

Calls

no outgoing calls

Tested by 1

unittestFunction · 0.36