The ESP32 hardware RNG requires WiFi|BT (RF) to generate true hardware RNG.
In lieu of RF being enabled PRNG is possible and should first call
bootloader_random_enable() according to
I have included
#include "bootloader_random.h"
I have noticed the file exists at:
C:\Users(YOURUSERNAME)\AppData\Local\Arduino15\packages\esp32\hardware\esp32\1.0.6\tools\sdk\include\bootloader_support\bootloader_random.h
However, when compiling for ESP32 boards I get the "undefined reference" error on the function call bootloader_random_enable()
I don't get an error message from the #include, am I missing some path info?