static uint32_t ulGetExternalTime()

in GCC/AVR_Mega0/port.c [262:273]


static uint32_t ulGetExternalTime(void)
{
    uint32_t time_rtc;

    while (RTC.STATUS & RTC_CNTBUSY_bm)
    {
        ;
    }
    time_rtc = RTC.CNT;
    time_rtc += RTC_OVF_Count;
    return time_rtc;
}