mirror of
https://github.com/taigrr/arduinolibs
synced 2025-01-18 04:33:12 -08:00
Change error in RNG.cpp to a warning
This commit is contained in:
parent
f4730a52cd
commit
b9fefc6a76
@ -52,15 +52,15 @@
|
|||||||
#endif
|
#endif
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
// Throw an error if there is no built-in hardware random number source.
|
// Throw a warning if there is no built-in hardware random number source.
|
||||||
// If this happens, then you need to do one of two things:
|
// If this happens, then you need to do one of two things:
|
||||||
// 1. Edit RNG.cpp to add your platform's hardware TRNG.
|
// 1. Edit RNG.cpp to add your platform's hardware TRNG.
|
||||||
// 2. Provide a proper noise source like TransistorNoiseSource
|
// 2. Provide a proper noise source like TransistorNoiseSource
|
||||||
// in your sketch and then comment out the #error line below.
|
// in your sketch and then comment out the #warning line below.
|
||||||
#if !defined(RNG_DUE_TRNG) && \
|
#if !defined(RNG_DUE_TRNG) && \
|
||||||
!defined(RNG_WATCHDOG) && \
|
!defined(RNG_WATCHDOG) && \
|
||||||
!defined(RNG_WORD_TRNG)
|
!defined(RNG_WORD_TRNG)
|
||||||
#error "no hardware random number source detected for this platform"
|
#warning "no hardware random number source detected for this platform"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user