* added getTransmitDelay(), applied to Flood mode retransmissions.

This commit is contained in:
Scott Powell 2025-01-13 20:45:01 +11:00
parent d06532d6f1
commit 8983584dd8
4 changed files with 20 additions and 5 deletions

View file

@ -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);
};