Example #1
0
void gpio_irqC(void)
{
    handle_interrupt_in(PORTC, 64);
}
Example #2
0
void gpio_irqA(void) {
    handle_interrupt_in(PORTA, 0);
}
Example #3
0
void gpio_irqB(void)
{
    handle_interrupt_in(PORTB, 32);
}
Example #4
0
static void gpio_irq5(void) {handle_interrupt_in(5);} // EXTI lines 5 to 9
Example #5
0
static void gpio_irq6(void) {handle_interrupt_in(6);} // EXTI lines 10 to 15
Example #6
0
// The irq_index is passed to the function
static void gpio_irq0(void) {
    handle_interrupt_in(0);
}
Example #7
0
static void gpio_irq1(void) {
    handle_interrupt_in(1);   // EXTI line 1
}
Example #8
0
// EXTI lines 5 to 9
static void gpio_irq5(void)
{
    handle_interrupt_in(5);
}
Example #9
0
static void gpio_irq2(void) {handle_interrupt_in(2);} // EXTI line 2
Example #10
0
void gpio_irq7(void) {handle_interrupt_in(7);}
Example #11
0
// EXTI lines 10 to 15
static void gpio_irq6(void)
{
    handle_interrupt_in(6);
}
Example #12
0
void gpio_irq4(void) {handle_interrupt_in(4);}
Example #13
0
void gpio_irq3(void) {handle_interrupt_in(3);}
Example #14
0
void gpio_irq2(void) {handle_interrupt_in(2);}
Example #15
0
void gpio_irqD(void)
{
    handle_interrupt_in(PORTD, 96);
}
Example #16
0
static void gpio_irq3(void) {handle_interrupt_in(3);} // EXTI line 3
Example #17
0
void gpio_irqE(void)
{
    handle_interrupt_in(PORTE, 128);
}
Example #18
0
static void gpio_irq4(void) {handle_interrupt_in(4);} // EXTI line 4
Example #19
0
static void gpio_irq1(void) {
    handle_interrupt_in(1);
}
Example #20
0
static void gpio_irq0(void) {
    handle_interrupt_in(0);   // EXTI line 0
}