[entropy] allow for entropy source sharing (#3818)

This commit is contained in:
Kamil Sroka
2019-05-17 12:41:03 -07:00
committed by Jonathan Hui
parent fc580c39e6
commit 56fa9ac9cd
110 changed files with 1510 additions and 598 deletions
+1 -1
View File
@@ -141,7 +141,7 @@ int8_t GetRandomRss(void)
{
uint32_t value;
value = otPlatRandomGet() % 128;
value = rand() % 128;
return -static_cast<int8_t>(value);
}