saml10e16a/oscctrl/
dfllulpsyncbusy.rs1#[doc = "Reader of register DFLLULPSYNCBUSY"]
2pub type R = crate::R<u32, super::DFLLULPSYNCBUSY>;
3#[doc = "Reader of field `ENABLE`"]
4pub type ENABLE_R = crate::R<bool, bool>;
5#[doc = "Reader of field `TUNE`"]
6pub type TUNE_R = crate::R<bool, bool>;
7#[doc = "Reader of field `DELAY`"]
8pub type DELAY_R = crate::R<bool, bool>;
9impl R {
10 #[doc = "Bit 1 - Enable Bit Synchronization Busy"]
11 #[inline(always)]
12 pub fn enable(&self) -> ENABLE_R {
13 ENABLE_R::new(((self.bits >> 1) & 0x01) != 0)
14 }
15 #[doc = "Bit 2 - Tune Bit Synchronization Busy"]
16 #[inline(always)]
17 pub fn tune(&self) -> TUNE_R {
18 TUNE_R::new(((self.bits >> 2) & 0x01) != 0)
19 }
20 #[doc = "Bit 3 - Delay Register Synchronization Busy"]
21 #[inline(always)]
22 pub fn delay(&self) -> DELAY_R {
23 DELAY_R::new(((self.bits >> 3) & 0x01) != 0)
24 }
25}