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

Method getrandbits

libraries/Prandom/Prandom.cpp:44–48  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

42
43
44uint32_t Prandom::getrandbits(uint8_t n)
45{
46 uint8_t shift = min(31, n - 1);
47 return _rnd(1UL << shift);
48}
49
50
51uint32_t Prandom::randrange(uint32_t stop)

Callers 1

unittestFunction · 0.80

Calls

no outgoing calls

Tested by 1

unittestFunction · 0.64