on line 208 in pins_arduino.h the line reads as:
#define digitalPinToPCICR(p) ((p) <= 11) ? (&GIMSK) : ((uint8_t *)NULL))
Needs three open parentheses in the replacement code
should read:
#define digitalPinToPCICR(p) (((p) <= 11) ? (&GIMSK) : ((uint8_t *)NULL))
on line 208 in pins_arduino.h the line reads as:
#define digitalPinToPCICR(p) ((p) <= 11) ? (&GIMSK) : ((uint8_t *)NULL))
Needs three open parentheses in the replacement code
should read:
#define digitalPinToPCICR(p) (((p) <= 11) ? (&GIMSK) : ((uint8_t *)NULL))