aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/NRF5/LLD
diff options
context:
space:
mode:
authorKonstantin K. Oblaukhov <oblaukhov@sl.iae.nsk.su>2019-04-09 16:25:54 +0700
committerKonstantin K. Oblaukhov <oblaukhov@sl.iae.nsk.su>2019-04-09 16:25:54 +0700
commit6fab9821ebd6bda8c21654513bcec8dddb46748e (patch)
tree3ad585cddf3616d178ba62e3875f5e99bd2247cb /os/hal/ports/NRF5/LLD
parent6dc1071c9f5f470dc4956ce78d59040499b76e07 (diff)
downloadChibiOS-Contrib-6fab9821ebd6bda8c21654513bcec8dddb46748e.tar.gz
ChibiOS-Contrib-6fab9821ebd6bda8c21654513bcec8dddb46748e.tar.bz2
ChibiOS-Contrib-6fab9821ebd6bda8c21654513bcec8dddb46748e.zip
Merge ICU (in GPIOTE mode) and PAL interrupts.
Diffstat (limited to 'os/hal/ports/NRF5/LLD')
-rw-r--r--os/hal/ports/NRF5/LLD/TIMERv1/hal_icu_lld.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/os/hal/ports/NRF5/LLD/TIMERv1/hal_icu_lld.c b/os/hal/ports/NRF5/LLD/TIMERv1/hal_icu_lld.c
index 4966007..bca8855 100644
--- a/os/hal/ports/NRF5/LLD/TIMERv1/hal_icu_lld.c
+++ b/os/hal/ports/NRF5/LLD/TIMERv1/hal_icu_lld.c
@@ -301,25 +301,6 @@ static void start_channels(ICUDriver *icup) {
/* Driver interrupt handlers. */
/*===========================================================================*/
-#if NRF5_ICU_USE_GPIOTE_PPI
-/**
- * @brief GPIOTE events interrupt handler.
- * @note It is assumed that the various sources are only activated if the
- * associated callback pointer is not equal to @p NULL in order to not
- * perform an extra check in a potentially critical interrupt handler.
- *
- * @isr
- */
-OSAL_IRQ_HANDLER(Vector58) {
-
- OSAL_IRQ_PROLOGUE();
-
- icu_lld_serve_gpiote_interrupt(&ICUD1);
-
- OSAL_IRQ_EPILOGUE();
-}
-#endif /* NRF5_ICU_USE_GPIOTE_PPI */
-
#if NRF5_ICU_USE_TIMER0
/**
* @brief TIMER0 compare interrupt handler.