From b1575db8b3a3d7e05c82dfe6c734661784900c6e Mon Sep 17 00:00:00 2001 From: Rohit Grover Date: Tue, 24 Feb 2015 13:15:28 +0000 Subject: [PATCH] rtc1_stop() doesn't need to be static. --- .../targets/hal/TARGET_NORDIC/TARGET_MCU_NRF51822/us_ticker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/mbed/targets/hal/TARGET_NORDIC/TARGET_MCU_NRF51822/us_ticker.c b/libraries/mbed/targets/hal/TARGET_NORDIC/TARGET_MCU_NRF51822/us_ticker.c index 934088a94b..4d6a10d6f5 100644 --- a/libraries/mbed/targets/hal/TARGET_NORDIC/TARGET_MCU_NRF51822/us_ticker.c +++ b/libraries/mbed/targets/hal/TARGET_NORDIC/TARGET_MCU_NRF51822/us_ticker.c @@ -100,7 +100,7 @@ static void rtc1_start(uint32_t prescaler) /**@brief Function for stopping the RTC1 timer. We don't expect to call this. */ -static void rtc1_stop(void) +void rtc1_stop(void) { if (!m_rtc1_running) { return;