Skip to content
Snippets Groups Projects
Commit 11895d4f authored by Thomas Eichinger's avatar Thomas Eichinger
Browse files

cpu/atmega2560: fix out of bounds array access

parent 1c68c8f1
No related branches found
No related tags found
No related merge requests found
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#define GPIO_OFFSET_PORT_H (0xCB) #define GPIO_OFFSET_PORT_H (0xCB)
#define GPIO_OFFSET_PIN_PORT (0x02) #define GPIO_OFFSET_PIN_PORT (0x02)
#define GPIO_OFFSET_PIN_PIN (0x03) #define GPIO_OFFSET_PIN_PIN (0x03)
#define GPIO_EXT_INT_NUMOF (7U) #define GPIO_EXT_INT_NUMOF (8U)
typedef struct { typedef struct {
gpio_cb_t cb; gpio_cb_t cb;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment