1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

cpu/atmega32u4: Removed incorrect interrupt

Currently the configuration claims that external interrupt INT4 is present on
pin PE7. However, the ATmega32U4 datasheet (section 10.3.4 page 81) contains
the following remark to pin PE7: "Not present on pin-out". This commit removes
the PE7 from the interrupt config.
This commit is contained in:
Marian Buschsieweke 2019-07-26 17:22:55 +02:00
parent b411d715dc
commit f9f30ed15b
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F

View File

@ -45,8 +45,7 @@ enum {
#define CPU_ATMEGA_EXT_INTS { GPIO_PIN(PORT_D, 0), \
GPIO_PIN(PORT_D, 1), \
GPIO_PIN(PORT_D, 2), \
GPIO_PIN(PORT_D, 3), \
GPIO_PIN(PORT_E, 7) }
GPIO_PIN(PORT_D, 3) }
/**
* @name Defines for the I2C interface