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 137ee77 commit 40186c8Copy full SHA for 40186c8
CHANGELOG.md
@@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
16
17
### Fixed
18
19
+- Fix missing `LED_BUILTIN` definition for Arduino Due.
20
+
21
### Security
22
23
cpp/arduino/ArduinoDefines.h
@@ -89,7 +89,7 @@
89
#define TIMER5B 17
90
#define TIMER5C 18
91
92
-#if defined(__AVR_ATmega328P__) || defined(__AVR_ATmega32U4__) || defined(__AVR_ATmega328__) || defined(__AVR_ATmega168__) || defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__)
+#if defined(__AVR_ATmega328P__) || defined(__AVR_ATmega32U4__) || defined(__AVR_ATmega328__) || defined(__AVR_ATmega168__) || defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(__SAM3X8E__)
93
#define LED_BUILTIN 13
94
#endif
95
0 commit comments