Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/FixedPointsArduino/commit/61cd656073f77fb6f1fc03f75328a6e9eafc6caa?style=split&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Support ESP32 like ESP8266

By skipping the functions that use stdlib random().
pull/71/head
Juerd Waalboer 5 years ago
parent 8d0ef25aec
commit 61cd656073
  1. 2
      src/FixedPoints/Details.h

@ -31,7 +31,7 @@
#define FIXED_POINTS_DETAILS FixedPointsDetails #define FIXED_POINTS_DETAILS FixedPointsDetails
#endif #endif
#if defined(ESP8266) || defined(ARDUINO_SAM_DUE) #if defined(ESP8266) || defined(ESP32) || defined(ARDUINO_SAM_DUE)
#define FIXED_POINTS_NO_RANDOM #define FIXED_POINTS_NO_RANDOM
#endif #endif

Loading…
Cancel
Save