S32 SDK
lpuart_irq.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 - 2014, Freescale Semiconductor, Inc.
3  * Copyright 2016 NXP
4  * All rights reserved.
5  *
6  * THIS SOFTWARE IS PROVIDED BY NXP "AS IS" AND ANY EXPRESSED OR
7  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
8  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
9  * IN NO EVENT SHALL NXP OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
10  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
11  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
12  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
13  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
14  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
15  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
16  * THE POSSIBILITY OF SUCH DAMAGE.
17  */
18 
32 #include "device_registers.h"
33 
34 /*******************************************************************************
35  * Variables
36  ******************************************************************************/
37 
38 /*******************************************************************************
39  * Prototypes
40  ******************************************************************************/
41 extern void LPUART_DRV_IRQHandler(uint32_t instance);
42 
43 /*******************************************************************************
44  * Code
45  ******************************************************************************/
46 
47 #if (LPUART_INSTANCE_COUNT > 0U)
48 /* Implementation of LPUART0 handler named in startup code. */
50 {
52 }
53 #endif
54 
55 #if (LPUART_INSTANCE_COUNT > 1U)
56 /* Implementation of LPUART1 handler named in startup code. */
58 {
60 }
61 #endif
62 
63 #if (LPUART_INSTANCE_COUNT > 2U)
64 /* Implementation of LPUART2 handler named in startup code. */
66 {
68 }
69 #endif
70 
71 #if (LPUART_INSTANCE_COUNT > 3U)
72 /* Implementation of LPUART3 handler named in startup code. */
73 void LPUART3_IrqHandler(void)
74 {
76 }
77 #endif
78 
79 /*******************************************************************************
80  * EOF
81  ******************************************************************************/
void LPUART_DRV_IRQHandler(uint32_t instance)
void LPUART0_IrqHandler(void)
LPUART0 interrupt handler.
Definition: lpuart_irq.c:49
void LPUART1_IrqHandler(void)
LPUART1 interrupt handler.
Definition: lpuart_irq.c:57
void LPUART2_IrqHandler(void)
LPUART2 interrupt handler.
Definition: lpuart_irq.c:65