We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 886d004 commit a01d01bCopy full SHA for a01d01b
cores/esp32/Arduino.h
@@ -38,6 +38,8 @@ extern "C" {
38
#include <stdlib.h>
39
#include <string.h>
40
#include <inttypes.h>
41
+#include <math.h>
42
+#include "stdlib_noniso.h"
43
44
typedef bool boolean;
45
typedef uint8_t byte;
@@ -48,6 +50,13 @@ typedef uint8_t byte;
48
50
}
49
51
#endif
52
53
+
54
+#ifndef _GLIBCXX_VECTOR
55
+// arduino is not compatible with std::vector
56
+#define min(a,b) ((a)<(b)?(a):(b))
57
+#define max(a,b) ((a)>(b)?(a):(b))
58
+#endif
59
60
#include "WCharacter.h"
61
#include "WString.h"
62
#include "Stream.h"
0 commit comments