Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions utility/interrupt_pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@
#define CORE_INT1_PIN 11
#define CORE_INT2_PIN 2

// MightyCore (64 untested 32A-bobuino-tested-OK)
#elif defined(__AVR_ATmega64__) || defined(__AVR_ATmega32__)
#define CORE_NUM_INTERRUPT 2
#define CORE_INT0_PIN 10
#define CORE_INT1_PIN 11

// ATmega32u2 and ATmega32u16 based boards with HoodLoader2
#elif defined(__AVR_ATmega32U2__) || defined(__AVR_ATmega16U2__)
#define CORE_NUM_INTERRUPT 8
Expand Down