This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Calender implementation in nRF52810

Dear Nordic,

I implemented a RTC calender in nRF52832 using RTC2 . I want to port this RTC calender to nRF52810  but 810 has 2 RTC.

RTC0 is used by softdevice and  RTC1 is used by App timer is it right?

how i port my RTC calender to 810?

which RTC i used for that?

can you help me to resolve this?

current irq handler in nRF52832 using RTC2:-

void CAL_RTC_IRQHandler(void)
{
    if(CAL_RTC->EVENTS_COMPARE[0])
    {
        CAL_RTC->EVENTS_COMPARE[0] = 0;
        
        CAL_RTC->TASKS_CLEAR = 1;
        
        m_time += m_rtc_increment;
        if(cal_event_callback) cal_event_callback();
		

    }
}

how i port my calender to nRF52810?

Parents Reply Children
No Data
Related