atsamd11c14a/rtc/mode2/
status.rs

1#[doc = "Reader of register STATUS"]
2pub type R = crate::R<u8, super::STATUS>;
3#[doc = "Reader of field `SYNCBUSY`"]
4pub type SYNCBUSY_R = crate::R<bool, bool>;
5impl R {
6    #[doc = "Bit 7 - Synchronization Busy"]
7    #[inline(always)]
8    pub fn syncbusy(&self) -> SYNCBUSY_R {
9        SYNCBUSY_R::new(((self.bits >> 7) & 0x01) != 0)
10    }
11}