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 fdb95e4 commit b8fb38eCopy full SHA for b8fb38e
utility/SerialFirmata.h
@@ -23,10 +23,10 @@
23
24
#include <Firmata.h>
25
#include "FirmataFeature.h"
26
-// SoftwareSerial is only supported for AVR-based boards
27
-// The second condition checks if the IDE is in the 1.0.x series, if so, include SoftwareSerial
+// SoftwareSerial is currently only supported for AVR-based boards and the Arduino 101
+// The third condition checks if the IDE is in the 1.0.x series, if so, include SoftwareSerial
28
// since it should be available to all boards in that IDE.
29
-#if defined(ARDUINO_ARCH_AVR) || (ARDUINO >= 100 && ARDUINO < 10500)
+#if defined(ARDUINO_ARCH_AVR) || defined(ARDUINO_ARCH_ARC32) || (ARDUINO >= 100 && ARDUINO < 10500)
30
#include <SoftwareSerial.h>
31
#endif
32
0 commit comments