Home
last modified time | relevance | path

Searched refs:rtc_1 (Results 1 – 2 of 2) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/hardware_rtc/
Drtc.c95 uint32_t rtc_1 = rtc_hw->rtc_1; in rtc_get_datetime() local
101 t->year = (int16_t) ((rtc_1 & RTC_RTC_1_YEAR_BITS ) >> RTC_RTC_1_YEAR_LSB); in rtc_get_datetime()
102 t->month = (int8_t) ((rtc_1 & RTC_RTC_1_MONTH_BITS) >> RTC_RTC_1_MONTH_LSB); in rtc_get_datetime()
103 t->day = (int8_t) ((rtc_1 & RTC_RTC_1_DAY_BITS ) >> RTC_RTC_1_DAY_LSB); in rtc_get_datetime()
/hal_rpi_pico-latest/src/rp2040/hardware_structs/include/hardware/structs/
Drtc.h84 io_ro_32 rtc_1;