ambiq_apollo3_pac2/ctimer/
tmr1.rs

1#[doc = "Register `TMR1` reader"]
2pub struct R(crate::R<TMR1_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<TMR1_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<TMR1_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<TMR1_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `TMR1` writer"]
17pub struct W(crate::W<TMR1_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<TMR1_SPEC>;
20    #[inline(always)]
21    fn deref(&self) -> &Self::Target {
22        &self.0
23    }
24}
25impl core::ops::DerefMut for W {
26    #[inline(always)]
27    fn deref_mut(&mut self) -> &mut Self::Target {
28        &mut self.0
29    }
30}
31impl From<crate::W<TMR1_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<TMR1_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `CTTMRB1` reader - Counter/Timer B1."]
38pub struct CTTMRB1_R(crate::FieldReader<u16, u16>);
39impl CTTMRB1_R {
40    pub(crate) fn new(bits: u16) -> Self {
41        CTTMRB1_R(crate::FieldReader::new(bits))
42    }
43}
44impl core::ops::Deref for CTTMRB1_R {
45    type Target = crate::FieldReader<u16, u16>;
46    #[inline(always)]
47    fn deref(&self) -> &Self::Target {
48        &self.0
49    }
50}
51#[doc = "Field `CTTMRB1` writer - Counter/Timer B1."]
52pub struct CTTMRB1_W<'a> {
53    w: &'a mut W,
54}
55impl<'a> CTTMRB1_W<'a> {
56    #[doc = r"Writes raw bits to the field"]
57    #[inline(always)]
58    pub unsafe fn bits(self, value: u16) -> &'a mut W {
59        self.w.bits = (self.w.bits & !(0xffff << 16)) | ((value as u32 & 0xffff) << 16);
60        self.w
61    }
62}
63#[doc = "Field `CTTMRA1` reader - Counter/Timer A1."]
64pub struct CTTMRA1_R(crate::FieldReader<u16, u16>);
65impl CTTMRA1_R {
66    pub(crate) fn new(bits: u16) -> Self {
67        CTTMRA1_R(crate::FieldReader::new(bits))
68    }
69}
70impl core::ops::Deref for CTTMRA1_R {
71    type Target = crate::FieldReader<u16, u16>;
72    #[inline(always)]
73    fn deref(&self) -> &Self::Target {
74        &self.0
75    }
76}
77#[doc = "Field `CTTMRA1` writer - Counter/Timer A1."]
78pub struct CTTMRA1_W<'a> {
79    w: &'a mut W,
80}
81impl<'a> CTTMRA1_W<'a> {
82    #[doc = r"Writes raw bits to the field"]
83    #[inline(always)]
84    pub unsafe fn bits(self, value: u16) -> &'a mut W {
85        self.w.bits = (self.w.bits & !0xffff) | (value as u32 & 0xffff);
86        self.w
87    }
88}
89impl R {
90    #[doc = "Bits 16:31 - Counter/Timer B1."]
91    #[inline(always)]
92    pub fn cttmrb1(&self) -> CTTMRB1_R {
93        CTTMRB1_R::new(((self.bits >> 16) & 0xffff) as u16)
94    }
95    #[doc = "Bits 0:15 - Counter/Timer A1."]
96    #[inline(always)]
97    pub fn cttmra1(&self) -> CTTMRA1_R {
98        CTTMRA1_R::new((self.bits & 0xffff) as u16)
99    }
100}
101impl W {
102    #[doc = "Bits 16:31 - Counter/Timer B1."]
103    #[inline(always)]
104    pub fn cttmrb1(&mut self) -> CTTMRB1_W {
105        CTTMRB1_W { w: self }
106    }
107    #[doc = "Bits 0:15 - Counter/Timer A1."]
108    #[inline(always)]
109    pub fn cttmra1(&mut self) -> CTTMRA1_W {
110        CTTMRA1_W { w: self }
111    }
112    #[doc = "Writes raw bits to the register."]
113    #[inline(always)]
114    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
115        self.0.bits(bits);
116        self
117    }
118}
119#[doc = "Counter/Timer Register\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [tmr1](index.html) module"]
120pub struct TMR1_SPEC;
121impl crate::RegisterSpec for TMR1_SPEC {
122    type Ux = u32;
123}
124#[doc = "`read()` method returns [tmr1::R](R) reader structure"]
125impl crate::Readable for TMR1_SPEC {
126    type Reader = R;
127}
128#[doc = "`write(|w| ..)` method takes [tmr1::W](W) writer structure"]
129impl crate::Writable for TMR1_SPEC {
130    type Writer = W;
131}
132#[doc = "`reset()` method sets TMR1 to value 0"]
133impl crate::Resettable for TMR1_SPEC {
134    #[inline(always)]
135    fn reset_value() -> Self::Ux {
136        0
137    }
138}