My task is to implement inbuilt RTC for nordic MCU nrf54l15 series.
When i use the below API nrfx_grtc_init, it is throwing a error and returning a error code which is saying Zephyr already initialized GRTC internally.
is it true ? if not, how i can use the API for initialising the RTC , any other API we need to use?
provide inputs in going forward.
//Initialize GRTC
// nrfx_err_t err = nrfx_grtc_init(GRTC_IRQ_PRIORITY);
// if (err != NRFX_SUCCESS)
// {
// printk("nrfx_grtc_init() failed with code: %d\n", err);
// // prints NRFX_ERROR_ALREADY =195887116 error code
// // Zephyr already initialized GRTC internally
// return;
// }