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 6ba4acf commit 2a82738Copy full SHA for 2a82738
MySensors.h
@@ -93,11 +93,11 @@
93
#define _BV(x) (1<<(x)) //!< _BV
94
#endif
95
96
-#if !defined(min) && !defined(__linux__)
+#if !defined(min) && !defined(__linux__) && !defined(ESP8266)
97
#define min(a,b) ((a)<(b)?(a):(b)) //!< min
98
99
100
-#if !defined(max) && !defined(__linux__)
+#if !defined(max) && !defined(__linux__) && !defined(ESP8266)
101
#define max(a,b) ((a)>(b)?(a):(b)) //!< max
102
103
0 commit comments