I'm trying to use real time clock with BLE and softdevice. My app based on ble_app_cts_c example and calendar (https://github.com/NordicPlayground/nrf5-calendar-example)
The idea is to connect board to time service on mobile, get current date and time and init the time clock of my board.
Calendar uses RTC0, but ble uses RTC0 and I decided to use RTC1, but got the issue, that RTC1 irq is implemented in 2 different files app_timer.h and one else, also I found that the best way is to create new timer with repeated mode (i.e. every 1 sec) and use them but got also errors with RTCs
What is the best way to use date on clock in ble device not calling each time mobile service to get current data?