atsamd51n/oscctrl/dpll/
dpllsyncbusy.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#[doc = "Register `DPLLSYNCBUSY` reader"]
pub type R = crate::R<DpllsyncbusySpec>;
#[doc = "Field `ENABLE` reader - DPLL Enable Synchronization Status"]
pub type EnableR = crate::BitReader;
#[doc = "Field `DPLLRATIO` reader - DPLL Loop Divider Ratio Synchronization Status"]
pub type DpllratioR = crate::BitReader;
impl R {
    #[doc = "Bit 1 - DPLL Enable Synchronization Status"]
    #[inline(always)]
    pub fn enable(&self) -> EnableR {
        EnableR::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - DPLL Loop Divider Ratio Synchronization Status"]
    #[inline(always)]
    pub fn dpllratio(&self) -> DpllratioR {
        DpllratioR::new(((self.bits >> 2) & 1) != 0)
    }
}
#[doc = "DPLL Synchronization Busy\n\nYou can [`read`](crate::Reg::read) this register and get [`dpllsyncbusy::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct DpllsyncbusySpec;
impl crate::RegisterSpec for DpllsyncbusySpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`dpllsyncbusy::R`](R) reader structure"]
impl crate::Readable for DpllsyncbusySpec {}
#[doc = "`reset()` method sets DPLLSYNCBUSY to value 0"]
impl crate::Resettable for DpllsyncbusySpec {
    const RESET_VALUE: u32 = 0;
}