mirror of
https://github.com/openmv/openmv.git
synced 2025-11-04 14:49:50 +08:00
169 lines
5.1 KiB
C
169 lines
5.1 KiB
C
/*
|
|
* Copyright (c) 2019, Nordic Semiconductor ASA
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* 3. Neither the name of the copyright holder nor the names of its
|
|
* contributors may be used to endorse or promote products derived from this
|
|
* software without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#ifndef NRFX_IRQS_NRF5340_APPLICATION_H__
|
|
#define NRFX_IRQS_NRF5340_APPLICATION_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// DCNF_IRQn
|
|
|
|
// CACHE_IRQn
|
|
|
|
// SPU_IRQn
|
|
|
|
// CLOCK_POWER_IRQn
|
|
#define nrfx_power_clock_irq_handler CLOCK_POWER_IRQHandler
|
|
|
|
// SPIM0_SPIS0_TWIM0_TWIS0_UARTE0_IRQn
|
|
#if NRFX_CHECK(NRFX_PRS_ENABLED) && NRFX_CHECK(NRFX_PRS_BOX_0_ENABLED)
|
|
#define nrfx_prs_box_0_irq_handler SPIM0_SPIS0_TWIM0_TWIS0_UARTE0_IRQHandler
|
|
#else
|
|
#define nrfx_spim_0_irq_handler SPIM0_SPIS0_TWIM0_TWIS0_UARTE0_IRQHandler
|
|
#define nrfx_spis_0_irq_handler SPIM0_SPIS0_TWIM0_TWIS0_UARTE0_IRQHandler
|
|
#define nrfx_twim_0_irq_handler SPIM0_SPIS0_TWIM0_TWIS0_UARTE0_IRQHandler
|
|
#define nrfx_twis_0_irq_handler SPIM0_SPIS0_TWIM0_TWIS0_UARTE0_IRQHandler
|
|
#define nrfx_uarte_0_irq_handler SPIM0_SPIS0_TWIM0_TWIS0_UARTE0_IRQHandler
|
|
#endif
|
|
|
|
// SPIM1_SPIS1_TWIM1_TWIS1_UARTE1_IRQn
|
|
#if NRFX_CHECK(NRFX_PRS_ENABLED) && NRFX_CHECK(NRFX_PRS_BOX_1_ENABLED)
|
|
#define nrfx_prs_box_1_irq_handler SPIM1_SPIS1_TWIM1_TWIS1_UARTE1_IRQHandler
|
|
#else
|
|
#define nrfx_spim_1_irq_handler SPIM1_SPIS1_TWIM1_TWIS1_UARTE1_IRQHandler
|
|
#define nrfx_spis_1_irq_handler SPIM1_SPIS1_TWIM1_TWIS1_UARTE1_IRQHandler
|
|
#define nrfx_twim_1_irq_handler SPIM1_SPIS1_TWIM1_TWIS1_UARTE1_IRQHandler
|
|
#define nrfx_twis_1_irq_handler SPIM1_SPIS1_TWIM1_TWIS1_UARTE1_IRQHandler
|
|
#define nrfx_uarte_1_irq_handler SPIM1_SPIS1_TWIM1_TWIS1_UARTE1_IRQHandler
|
|
#endif
|
|
|
|
// SPIM2_IRQn
|
|
#define nrfx_spim_2_irq_handler SPIM2_IRQHandler
|
|
|
|
// GPIOTE0_IRQn
|
|
#define nrfx_gpiote_irq_handler GPIOTE0_IRQHandler
|
|
|
|
// SAADC_IRQn
|
|
#define nrfx_saadc_irq_handler SAADC_IRQHandler
|
|
|
|
// TIMER0_IRQn
|
|
#define nrfx_timer_0_irq_handler TIMER0_IRQHandler
|
|
|
|
// TIMER1_IRQn
|
|
#define nrfx_timer_1_irq_handler TIMER1_IRQHandler
|
|
|
|
// TIMER2_IRQn
|
|
#define nrfx_timer_2_irq_handler TIMER2_IRQHandler
|
|
|
|
// RTC0_IRQn
|
|
#define nrfx_rtc_0_irq_handler RTC0_IRQHandler
|
|
|
|
// RTC1_IRQn
|
|
#define nrfx_rtc_1_irq_handler RTC1_IRQHandler
|
|
|
|
// WDT0_IRQn
|
|
#define nrfx_wdt_0_irq_handler WDT0_IRQHandler
|
|
|
|
// WDT1_IRQn
|
|
#define nrfx_wdt_1_irq_handler WDT1_IRQHandler
|
|
|
|
// COMP_LPCOMP_IRQn
|
|
#if NRFX_CHECK(NRFX_PRS_ENABLED) && NRFX_CHECK(NRFX_PRS_BOX_2_ENABLED)
|
|
#define nrfx_prs_box_2_irq_handler COMP_LPCOMP_IRQHandler
|
|
#else
|
|
#define nrfx_comp_irq_handler COMP_LPCOMP_IRQHandler
|
|
#define nrfx_lpcomp_irq_handler COMP_LPCOMP_IRQHandler
|
|
#endif
|
|
|
|
// EGU0_IRQn
|
|
#define nrfx_egu_0_irq_handler EGU0_IRQHandler
|
|
|
|
// EGU1_IRQn
|
|
#define nrfx_egu_1_irq_handler EGU1_IRQHandler
|
|
|
|
// EGU2_IRQn
|
|
#define nrfx_egu_2_irq_handler EGU2_IRQHandler
|
|
|
|
// EGU3_IRQn
|
|
#define nrfx_egu_3_irq_handler EGU3_IRQHandler
|
|
|
|
// EGU4_IRQn
|
|
#define nrfx_egu_4_irq_handler EGU4_IRQHandler
|
|
|
|
// EGU5_IRQn
|
|
#define nrfx_egu_5_irq_handler EGU5_IRQHandler
|
|
|
|
// PWM0_IRQn
|
|
#define nrfx_pwm_0_irq_handler PWM0_IRQHandler
|
|
|
|
// PWM1_IRQn
|
|
#define nrfx_pwm_1_irq_handler PWM1_IRQHandler
|
|
|
|
// PWM2_IRQn
|
|
#define nrfx_pwm_2_irq_handler PWM2_IRQHandler
|
|
|
|
// PDM0_IRQn
|
|
#define nrfx_pdm_irq_handler PDM0_IRQHandler
|
|
|
|
// I2S0_IRQn
|
|
#define nrfx_i2s_irq_handler I2S0_IRQHandler
|
|
|
|
// IPC_IRQn
|
|
#define nrfx_ipc_irq_handler IPC_IRQHandler
|
|
|
|
// QSPI_IRQn
|
|
#define nrfx_qspi_irq_handler QSPI_IRQHandler
|
|
|
|
// NFCT_IRQn
|
|
#define nrfx_nfct_irq_handler NFCT_IRQHandler
|
|
|
|
// GPIOTE1_IRQn
|
|
|
|
// QDEC_IRQn
|
|
#define nrfx_qdec_irq_handler QDEC_IRQHandler
|
|
|
|
// USBD_IRQn
|
|
#define nrfx_usbd_irq_handler USBD_IRQHandler
|
|
|
|
// USBREGULATOR_IRQn
|
|
|
|
// KMU_IRQn
|
|
|
|
// CRYPTOCELL_IRQn
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // NRFX_IRQS_NRF5340_APPLICATION_H__
|