Hi, I have a project where, I need to change the minimum and maximum (MIN_CONN_INTERVAL and MAX_CONN_INTERVAL) connection interval to higher values like 1 second and 2 second. So, I need RTC1 CC[0] for keeping track of connection interval. But I need another RTC for led blinking and tracking other timeouts in my code. So, I used RTC CC[1] to do this purpose. The problem is, during a disconnection with the app, in ble_conn_params.c, under on_disconnect, the RTC1 is stopped (app_timer_stop). As a result of this, my periodic led blinks and timeouts for other parts of the code don't work (because the timer RTC1 is stopped). How to get around with this? I use nRF51822 AA and SDK 10.0.0 S130.THanks.