File tree 5 files changed +13
-1
lines changed
sam/variants/arduino_due_x
5 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ ARDUINO 1.5.5 BETA
14
14
* sam: Fixed wrong initialization for ADC timings (analogRead speed Arduino DUE improved by a factor x10)
15
15
(http://www.djerickson.com/arduino/)
16
16
* avr: Fixed wrong extended fuses on Arduino Yún when using external programmer
17
+ * Added digitalPinToInterrupt variant macro (Paul Stoffregen)
17
18
18
19
ARDUINO 1.5.4 BETA 2013.09.10
19
20
Original file line number Diff line number Diff line change @@ -132,6 +132,8 @@ static const uint8_t A11 = 29; // D12
132
132
extern const uint8_t PROGMEM analog_pin_to_channel_PGM [];
133
133
#define analogPinToChannel (P ) ( pgm_read_byte( analog_pin_to_channel_PGM + (P) ) )
134
134
135
+ #define digitalPinToInterrupt (p ) ((p) == 0 ? 2 : ((p) == 1 ? 3 : ((p) == 2 ? 1 : ((p) == 3 ? 0 : ((p) == 7 ? 4 : -1)))))
136
+
135
137
#ifdef ARDUINO_MAIN
136
138
137
139
// On the Arduino board, digital pins are also used
Original file line number Diff line number Diff line change @@ -83,6 +83,8 @@ static const uint8_t A15 = 69;
83
83
( (((p) >= 62) && ((p) <= 69)) ? ((p) - 62) : \
84
84
0 ) ) ) ) ) )
85
85
86
+ #define digitalPinToInterrupt (p ) ((p) == 2 ? 0 : ((p) == 3 ? 1 : ((p) >= 18 && (p) <= 21 ? 23 - (p) : -1)))
87
+
86
88
#ifdef ARDUINO_MAIN
87
89
88
90
const uint16_t PROGMEM port_to_mode_PGM [] = {
@@ -360,4 +362,4 @@ const uint8_t PROGMEM digital_pin_to_timer_PGM[] = {
360
362
361
363
#endif
362
364
363
- #endif
365
+ #endif
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ static const uint8_t A7 = 21;
60
60
#define digitalPinToPCMSK (p ) (((p) <= 7) ? (&PCMSK2) : (((p) <= 13) ? (&PCMSK0) : (((p) <= 21) ? (&PCMSK1) : ((uint8_t *)0))))
61
61
#define digitalPinToPCMSKbit (p ) (((p) <= 7) ? (p) : (((p) <= 13) ? ((p) - 8) : ((p) - 14)))
62
62
63
+ #define digitalPinToInterrupt (p ) ((p) == 2 ? 0 : ((p) == 3 ? 1 : -1))
64
+
63
65
#ifdef ARDUINO_MAIN
64
66
65
67
// On the Arduino board, digital pins are also used
Original file line number Diff line number Diff line change @@ -56,6 +56,11 @@ extern "C"{
56
56
57
57
// Number of pins defined in PinDescription array
58
58
#define PINS_COUNT (79u)
59
+ #define NUM_DIGITAL_PINS (53u)
60
+ #define NUM_ANALOG_INPUTS (12u)
61
+
62
+ // Interrupts
63
+ #define digitalPinToInterrupt (p ) ((p) < NUM_DIGITAL_PINS ? (p) : -1)
59
64
60
65
// LEDs
61
66
#define PIN_LED_13 (13u)
You can’t perform that action at this time.
0 commit comments