1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/atmega328p: external interrupt refactor

This commit is contained in:
Matthew Blue 2018-04-15 17:58:49 -04:00
parent 6ea326112d
commit 0b2d620161

View File

@ -41,6 +41,14 @@ enum {
PORT_D = 3 /**< port D */
};
/**
* @brief Available external interrupt pins on the ATmega328p family
*
* In order of their interrupt number.
*/
#define CPU_ATMEGA_EXT_INTS { GPIO_PIN(PORT_D, 2), \
GPIO_PIN(PORT_D, 3) }
/**
* @name Defines for the I2C interface
* @{