atsamd21j/sysctrl/
dfllmul.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#[doc = "Register `DFLLMUL` reader"]
pub type R = crate::R<DfllmulSpec>;
#[doc = "Register `DFLLMUL` writer"]
pub type W = crate::W<DfllmulSpec>;
#[doc = "Field `MUL` reader - DFLL Multiply Factor"]
pub type MulR = crate::FieldReader<u16>;
#[doc = "Field `MUL` writer - DFLL Multiply Factor"]
pub type MulW<'a, REG> = crate::FieldWriter<'a, REG, 16, u16>;
#[doc = "Field `FSTEP` reader - Fine Maximum Step"]
pub type FstepR = crate::FieldReader<u16>;
#[doc = "Field `FSTEP` writer - Fine Maximum Step"]
pub type FstepW<'a, REG> = crate::FieldWriter<'a, REG, 10, u16>;
#[doc = "Field `CSTEP` reader - Coarse Maximum Step"]
pub type CstepR = crate::FieldReader;
#[doc = "Field `CSTEP` writer - Coarse Maximum Step"]
pub type CstepW<'a, REG> = crate::FieldWriter<'a, REG, 6>;
impl R {
    #[doc = "Bits 0:15 - DFLL Multiply Factor"]
    #[inline(always)]
    pub fn mul(&self) -> MulR {
        MulR::new((self.bits & 0xffff) as u16)
    }
    #[doc = "Bits 16:25 - Fine Maximum Step"]
    #[inline(always)]
    pub fn fstep(&self) -> FstepR {
        FstepR::new(((self.bits >> 16) & 0x03ff) as u16)
    }
    #[doc = "Bits 26:31 - Coarse Maximum Step"]
    #[inline(always)]
    pub fn cstep(&self) -> CstepR {
        CstepR::new(((self.bits >> 26) & 0x3f) as u8)
    }
}
impl W {
    #[doc = "Bits 0:15 - DFLL Multiply Factor"]
    #[inline(always)]
    #[must_use]
    pub fn mul(&mut self) -> MulW<DfllmulSpec> {
        MulW::new(self, 0)
    }
    #[doc = "Bits 16:25 - Fine Maximum Step"]
    #[inline(always)]
    #[must_use]
    pub fn fstep(&mut self) -> FstepW<DfllmulSpec> {
        FstepW::new(self, 16)
    }
    #[doc = "Bits 26:31 - Coarse Maximum Step"]
    #[inline(always)]
    #[must_use]
    pub fn cstep(&mut self) -> CstepW<DfllmulSpec> {
        CstepW::new(self, 26)
    }
}
#[doc = "DFLL48M Multiplier\n\nYou can [`read`](crate::Reg::read) this register and get [`dfllmul::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dfllmul::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct DfllmulSpec;
impl crate::RegisterSpec for DfllmulSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`dfllmul::R`](R) reader structure"]
impl crate::Readable for DfllmulSpec {}
#[doc = "`write(|w| ..)` method takes [`dfllmul::W`](W) writer structure"]
impl crate::Writable for DfllmulSpec {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets DFLLMUL to value 0"]
impl crate::Resettable for DfllmulSpec {
    const RESET_VALUE: u32 = 0;
}