From 8d2b22cd05cb91ae519a8d7c1aaeef2a22623722 Mon Sep 17 00:00:00 2001 From: Ioannis Glaropoulos Date: Wed, 4 Apr 2018 17:45:46 +0200 Subject: [PATCH] drivers: timer: expose RTC1 ISR handler function This commit exposes the RTC1 ISR handling function, so the function can be directly used in tests which generate customized vector tables manually and require a visible symbol for the ISR function. Signed-off-by: Ioannis Glaropoulos --- drivers/timer/nrf_rtc_timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/timer/nrf_rtc_timer.c b/drivers/timer/nrf_rtc_timer.c index 559a1be102f..c3d9d2d9e8b 100644 --- a/drivers/timer/nrf_rtc_timer.c +++ b/drivers/timer/nrf_rtc_timer.c @@ -452,7 +452,7 @@ void _timer_idle_exit(void) * this example. The ISR will then announce the number of sys ticks it was * delayed (2), and schedule the next sys tick (5) at 500. */ -static void rtc1_nrf5_isr(void *arg) +void rtc1_nrf5_isr(void *arg) { ARG_UNUSED(arg);