ISSDK  1.8
IoT Sensing Software Development Kit
gpio_driver_irq.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016, Freescale Semiconductor, Inc.
3  * Copyright 2016-2017 NXP
4  * All rights reserved.
5  *
6  * SPDX-License-Identifier: BSD-3-Clause
7  */
8 
9 /**
10  * @file gpio_driver_irq.c
11  * @brief The gpio_driver_irq.c file containes the Generic IRQ implmentation for GPIO.
12 */
13 
14 #include "fsl_gpio.h"
15 #include "gpio_driver.h"
16 
17 extern void ksdk_gpio_handle_interrupt(GPIO_Type *base, port_number_t portNumber);
18 
19 /*******************************************************************************
20  * Functions - GPIOIRQ implementation
21  ******************************************************************/
22 void PORTA_IRQHandler(void)
23 {
25 }
26 void PORTB_IRQHandler(void)
27 {
29 }
30 void PORTC_IRQHandler(void)
31 {
33 }
34 void PORTD_IRQHandler(void)
35 {
37 }
38 void PORTE_IRQHandler(void)
39 {
41 }
void PORTD_IRQHandler(void)
void PORTE_IRQHandler(void)
void ksdk_gpio_handle_interrupt(GPIO_Type *base, port_number_t portNumber)
Definition: gpio_driver.c:153
void PORTC_IRQHandler(void)
void PORTB_IRQHandler(void)
enum port_number port_number_t
GPIO PORT NAMES.
void PORTA_IRQHandler(void)