Skip to content
Snippets Groups Projects
Commit 0b2d6201 authored by Matthew Blue's avatar Matthew Blue
Browse files

cpu/atmega328p: external interrupt refactor

parent 6ea32611
No related branches found
No related tags found
No related merge requests found
...@@ -41,6 +41,14 @@ enum { ...@@ -41,6 +41,14 @@ enum {
PORT_D = 3 /**< port D */ 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 * @name Defines for the I2C interface
* @{ * @{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment