File tree 5 files changed +10
-0
lines changed
5 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,8 @@ static const uint8_t A11 = 29; // D12
133
133
extern const uint8_t PROGMEM analog_pin_to_channel_PGM [];
134
134
#define analogPinToChannel (P ) ( pgm_read_byte( analog_pin_to_channel_PGM + (P) ) )
135
135
136
+ #define digitalPinToInterrupt (p ) ((p) == 0 ? 2 : ((p) == 1 ? 3 : ((p) == 2 ? 1 : ((p) == 3 ? 0 : ((p) == 7 ? 4 : NOT_AN_INTERRUPT)))))
137
+
136
138
#ifdef ARDUINO_MAIN
137
139
138
140
// 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) : NOT_AN_INTERRUPT)))
87
+
86
88
#ifdef ARDUINO_MAIN
87
89
88
90
const uint16_t PROGMEM port_to_mode_PGM [] = {
Original file line number Diff line number Diff line change @@ -94,6 +94,8 @@ static const uint8_t LED1 = 17; // D17 - RX_Led
94
94
extern const uint8_t PROGMEM analog_pin_to_channel_PGM [];
95
95
#define analogPinToChannel (P ) ( pgm_read_byte( analog_pin_to_channel_PGM + (P) ) )
96
96
97
+ #define digitalPinToInterrupt (p ) ((p) == 0 ? 2 : ((p) == 1 ? 3 : ((p) == 2 ? 1 : ((p) == 3 ? 0 : ((p) == 7 ? 4 : NOT_AN_INTERRUPT)))))
98
+
97
99
#ifdef ARDUINO_MAIN
98
100
99
101
// On the Arduino board, digital pins are also used
Original file line number Diff line number Diff line change @@ -89,6 +89,8 @@ static const uint8_t TK4 = 12; // A11
89
89
extern const uint8_t PROGMEM analog_pin_to_channel_PGM [];
90
90
#define analogPinToChannel (P ) ( pgm_read_byte( analog_pin_to_channel_PGM + (P) ) )
91
91
92
+ #define digitalPinToInterrupt (p ) ((p) == 0 ? 2 : ((p) == 1 ? 3 : ((p) == 2 ? 1 : ((p) == 3 ? 0 : ((p) == 7 ? 4 : NOT_AN_INTERRUPT)))))
93
+
92
94
#ifdef ARDUINO_MAIN
93
95
94
96
// On the Arduino board, digital pins are also used
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 : NOT_AN_INTERRUPT))
64
+
63
65
#ifdef ARDUINO_MAIN
64
66
65
67
// On the Arduino board, digital pins are also used
You can’t perform that action at this time.
0 commit comments