summaryrefslogtreecommitdiffstats
path: root/libopencm3/include/libopencm3/lpc17xx/nvic.h
blob: ab14b65772801d0a2286abe08f70b8c7a3f16385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/* This file is part of the libopencm3 project.
 *
 * It was generated by the irq2nvic_h script.
 */

#ifndef LIBOPENCM3_LPC17xx_NVIC_H
#define LIBOPENCM3_LPC17xx_NVIC_H

#include <libopencm3/cm3/nvic.h>

/** @defgroup CM3_nvic_defines_LPC17xx User interrupts for LPC 17xx series
    @ingroup CM3_nvic_defines

    @{*/

#define NVIC_USB_IRQ 24
#define NVIC_CAN_IRQ 25
#define NVIC_GPDMA_IRQ 26
#define NVIC_I2S_IRQ 27
#define NVIC_EINT2_IRQ 20
#define NVIC_EINT3_IRQ 21
#define NVIC_ADC_IRQ 22
#define NVIC_BOD_IRQ 23
#define NVIC_ETHERNET_IRQ 28
#define NVIC_RIT_IRQ 29
#define NVIC_TIMER0_IRQ 1
#define NVIC_WDT_IRQ 0
#define NVIC_TIMER2_IRQ 3
#define NVIC_TIMER1_IRQ 2
#define NVIC_UART0_IRQ 5
#define NVIC_TIMER3_IRQ 4
#define NVIC_UART2_IRQ 7
#define NVIC_UART1_IRQ 6
#define NVIC_PWM_IRQ 9
#define NVIC_UART3_IRQ 8
#define NVIC_I2C1_IRQ 11
#define NVIC_I2C0_IRQ 10
#define NVIC_SPI_IRQ 13
#define NVIC_I2C2_IRQ 12
#define NVIC_SSP1_IRQ 15
#define NVIC_SSP0_IRQ 14
#define NVIC_RTC_IRQ 17
#define NVIC_PLL0_IRQ 16
#define NVIC_EINT1_IRQ 19
#define NVIC_EINT0_IRQ 18
#define NVIC_QEI_IRQ 31
#define NVIC_MOTOR_PWM_IRQ 30
#define NVIC_CAN_ACT_IRQ 34
#define NVIC_USB_ACT_IRQ 33
#define NVIC_PLL1_IRQ 32

#define NVIC_IRQ_COUNT 35

/**@}*/

/** @defgroup CM3_nvic_isrprototypes_LPC17xx User interrupt service routines (ISR) prototypes for LPC 17xx series
    @ingroup CM3_nvic_isrprototypes

    @{*/

BEGIN_DECLS

void WEAK usb_isr(void);
void WEAK can_isr(void);
void WEAK gpdma_isr(void);
void WEAK i2s_isr(void);
void WEAK eint2_isr(void);
void WEAK eint3_isr(void);
void WEAK adc_isr(void);
void WEAK bod_isr(void);
void WEAK ethernet_isr(void);
void WEAK rit_isr(void);
void WEAK timer0_isr(void);
void WEAK wdt_isr(void);
void WEAK timer2_isr(void);
void WEAK timer1_isr(void);
void WEAK uart0_isr(void);
void WEAK timer3_isr(void);
void WEAK uart2_isr(void);
void WEAK uart1_isr(void);
void WEAK pwm_isr(void);
void WEAK uart3_isr(void);
void WEAK i2c1_isr(void);
void WEAK i2c0_isr(void);
void WEAK spi_isr(void);
void WEAK i2c2_isr(void);
void WEAK ssp1_isr(void);
void WEAK ssp0_isr(void);
void WEAK rtc_isr(void);
void WEAK pll0_isr(void);
void WEAK eint1_isr(void);
void WEAK eint0_isr(void);
void WEAK qei_isr(void);
void WEAK motor_pwm_isr(void);
void WEAK can_act_isr(void);
void WEAK usb_act_isr(void);
void WEAK pll1_isr(void);

END_DECLS

/**@}*/

#endif /* LIBOPENCM3_LPC17xx_NVIC_H */