From 61cd656073f77fb6f1fc03f75328a6e9eafc6caa Mon Sep 17 00:00:00 2001 From: Juerd Waalboer Date: Thu, 28 Jan 2021 02:12:43 +0100 Subject: [PATCH] Support ESP32 like ESP8266 By skipping the functions that use stdlib random(). --- src/FixedPoints/Details.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FixedPoints/Details.h b/src/FixedPoints/Details.h index 0e88263..60eea18 100644 --- a/src/FixedPoints/Details.h +++ b/src/FixedPoints/Details.h @@ -31,7 +31,7 @@ #define FIXED_POINTS_DETAILS FixedPointsDetails #endif -#if defined(ESP8266) || defined(ARDUINO_SAM_DUE) +#if defined(ESP8266) || defined(ESP32) || defined(ARDUINO_SAM_DUE) #define FIXED_POINTS_NO_RANDOM #endif