mirror of
https://github.com/meshcore-dev/MeshCore.git
synced 2026-04-20 22:13:47 +00:00
* added getTransmitDelay(), applied to Flood mode retransmissions.
This commit is contained in:
parent
d06532d6f1
commit
8983584dd8
4 changed files with 20 additions and 5 deletions
|
|
@ -9,6 +9,10 @@ namespace mesh {
|
|||
class RNG {
|
||||
public:
|
||||
virtual void random(uint8_t* dest, size_t sz) = 0;
|
||||
|
||||
/**
|
||||
* \returns random number between _min (inclusive) and _max (exclusive)
|
||||
*/
|
||||
uint32_t nextInt(uint32_t _min, uint32_t _max);
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue