Skip to content
Snippets Groups Projects
Commit 81bfb0c9 authored by lebrush's avatar lebrush Committed by GitHub
Browse files

Merge pull request #7594 from lebrush/fix/atmega-context-switch

boards/arduino-atmega-common: use PD7 for ctx operations
parents 04175fba 94624c2b
No related branches found
No related tags found
No related merge requests found
...@@ -65,12 +65,12 @@ extern "C" { ...@@ -65,12 +65,12 @@ extern "C" {
*/ */
#ifdef CPU_ATMEGA328P #ifdef CPU_ATMEGA328P
#define AVR_CONTEXT_SWAP_INIT do { \ #define AVR_CONTEXT_SWAP_INIT do { \
DDRC |= (1 << PC5); \ DDRD |= (1 << PD7); \
PCICR |= (1 << PCIE1); \ PCICR |= (1 << PCIE2); \
PCMSK1 |= (1 << PCINT13); \ PCMSK2 |= (1 << PCINT23); \
} while (0) } while (0)
#define AVR_CONTEXT_SWAP_INTERRUPT_VECT PCINT1_vect #define AVR_CONTEXT_SWAP_INTERRUPT_VECT PCINT2_vect
#define AVR_CONTEXT_SWAP_TRIGGER PORTC ^= (1 << PC5) #define AVR_CONTEXT_SWAP_TRIGGER PORTD ^= (1 << PD7)
#endif #endif
#ifdef CPU_ATMEGA2560 #ifdef CPU_ATMEGA2560
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment