We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da14e01 commit a72872dCopy full SHA for a72872d
1 file changed
ArduinoCore-Linux/cores/arduino/Arduino.h
@@ -24,6 +24,18 @@
24
#define _USE_MATH_DEFINES // to provide const like M_PI via <math.h>
25
#endif
26
27
+#if defined(_MSC_VER)
28
+// Not available under MSVC
29
+#define __attribute__(x) // nothing
30
+#define __builtin_constant_p(x) (0) // non-constant
31
+#endif
32
+
33
34
+// Temporary unsupported under Win/MSVC
35
+#define PROVIDE_HARDWARE_SETUP_SKIP
36
+#define PROVIDE_HARDWARE_WIFI_SKIP
37
38
39
#include "ArduinoAPI.h"
40
#include "ArdStdio.h"
41
#include "ArduinoLogger.h"
0 commit comments