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 dd6890a commit 6aa6dc1Copy full SHA for 6aa6dc1
variants/arduino_zero/variant.h
@@ -96,13 +96,15 @@ extern "C"
96
#define PIN_A3 (17ul)
97
#define PIN_A4 (18ul)
98
#define PIN_A5 (19ul)
99
-
100
-static const uint8_t A0 = PIN_A0 ;
101
-static const uint8_t A1 = PIN_A1 ;
102
-static const uint8_t A2 = PIN_A2 ;
103
-static const uint8_t A3 = PIN_A3 ;
104
-static const uint8_t A4 = PIN_A4 ;
105
-static const uint8_t A5 = PIN_A5 ;
+#define PIN_DAC0 (14ul)
+
+static const uint8_t A0 = PIN_A0;
+static const uint8_t A1 = PIN_A1;
+static const uint8_t A2 = PIN_A2;
+static const uint8_t A3 = PIN_A3;
+static const uint8_t A4 = PIN_A4;
106
+static const uint8_t A5 = PIN_A5;
107
+static const uint8_t DAC0 = PIN_DAC0;
108
#define ADC_RESOLUTION 12
109
110
// Other pins
0 commit comments