Hi i am having doubt in RTC configuration.I am using RTC1 and i want to produce ticks for every 1 minute.I have combined the UART and RTC example to get the RTC output in terminal.The project is compiling without any error.I have changed the RTC1_CONFIG_FREQUENCY in nrf_drv_config.h as 0.0166666667 to get a tick for every one minute.But i am not getting the correct output.The count value is not increasing for every minute instead of varying for some microseconds.My question is how to change the RTC1_CONFIG_FREQUENCY??.In which file this variable is located.Thanks in advance.Attaching the code snippet
if(int_type == NRF_DRV_RTC_INT_TICK) { counts=nrf_drv_rtc_counter_get(&rtc); printf("%d\n",counts); printf("%d\n",RTC1_CONFIG_FREQUENCY); }