You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CRYPTO/RNG.cpp uses the watchdog to generate entropy, however I need to use it for other purposes.
I see that part is guarded by a macro, but setting RNG_WATCHDOG to 0 causes compilation errors.
Is there a simple way to disable it?
The text was updated successfully, but these errors were encountered:
Try commenting the line out completely rather than setting it to 0; i.e.:
//#define RNG_WATCHDOG 1
You may also need to comment out the "no hardware random number source" error/warning. You will need a separate noise source to replace the watchdog of course.
Hi, I am using in the same sketch LowPower library and this library. I have problems to use another source of noise.
Could I get any simple example ?
Thanks.
CRYPTO/RNG.cpp uses the watchdog to generate entropy, however I need to use it for other purposes.
I see that part is guarded by a macro, but setting RNG_WATCHDOG to 0 causes compilation errors.
Is there a simple way to disable it?
The text was updated successfully, but these errors were encountered: