aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/NRF5/LLD/TIMERv1/hal_icu_lld.c
diff options
context:
space:
mode:
authorFabien Poussin <fabien.poussin@gmail.com>2019-04-09 11:44:44 +0200
committerGitHub <noreply@github.com>2019-04-09 11:44:44 +0200
commit9abc320aa536698bfe04a158a282ea3cf7daea90 (patch)
tree3ad585cddf3616d178ba62e3875f5e99bd2247cb /os/hal/ports/NRF5/LLD/TIMERv1/hal_icu_lld.c
parent4decb6aed3d8f2987d6b255eab1f6eadf39be46a (diff)
parent6fab9821ebd6bda8c21654513bcec8dddb46748e (diff)
downloadChibiOS-Contrib-9abc320aa536698bfe04a158a282ea3cf7daea90.tar.gz
ChibiOS-Contrib-9abc320aa536698bfe04a158a282ea3cf7daea90.tar.bz2
ChibiOS-Contrib-9abc320aa536698bfe04a158a282ea3cf7daea90.zip
Merge pull request #191 from ObKo/nrf52-pal-new
NRF5x: Add support for PAL events.
Diffstat (limited to 'os/hal/ports/NRF5/LLD/TIMERv1/hal_icu_lld.c')
-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.