Skip to content
Snippets Groups Projects
Commit 2090dd02 authored by Joakim Nohlgård's avatar Joakim Nohlgård
Browse files

kinetis: Add GPIO ISR for CPUs with combined PORTB+PORTC interrupt

parent 8642c8ce
No related branches found
No related tags found
No related merge requests found
......@@ -352,3 +352,12 @@ void isr_portg(void)
irq_handler(PORTG, 6);
}
#endif /* ISR_PORT_G */
#if defined(PORTB_BASE) && defined(PORTC_BASE)
/* Combined ISR used in certain KL devices */
void isr_portb_portc(void)
{
irq_handler(PORTB, 1);
irq_handler(PORTC, 2);
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment