stm32f0/stm32f0x1/tim14/
ccer.rs

1#[doc = "Register `CCER` reader"]
2pub struct R(crate::R<CCER_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<CCER_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<CCER_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<CCER_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `CCER` writer"]
17pub struct W(crate::W<CCER_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<CCER_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<CCER_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<CCER_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `CC1NP` reader - Capture/Compare 1 output Polarity"]
38pub type CC1NP_R = crate::BitReader<bool>;
39#[doc = "Field `CC1NP` writer - Capture/Compare 1 output Polarity"]
40pub type CC1NP_W<'a, const O: u8> = crate::BitWriter<'a, u32, CCER_SPEC, bool, O>;
41#[doc = "Field `CC1P` reader - Capture/Compare 1 output Polarity"]
42pub type CC1P_R = crate::BitReader<bool>;
43#[doc = "Field `CC1P` writer - Capture/Compare 1 output Polarity"]
44pub type CC1P_W<'a, const O: u8> = crate::BitWriter<'a, u32, CCER_SPEC, bool, O>;
45#[doc = "Field `CC1E` reader - Capture/Compare 1 output enable"]
46pub type CC1E_R = crate::BitReader<bool>;
47#[doc = "Field `CC1E` writer - Capture/Compare 1 output enable"]
48pub type CC1E_W<'a, const O: u8> = crate::BitWriter<'a, u32, CCER_SPEC, bool, O>;
49impl R {
50    #[doc = "Bit 3 - Capture/Compare 1 output Polarity"]
51    #[inline(always)]
52    pub fn cc1np(&self) -> CC1NP_R {
53        CC1NP_R::new(((self.bits >> 3) & 1) != 0)
54    }
55    #[doc = "Bit 1 - Capture/Compare 1 output Polarity"]
56    #[inline(always)]
57    pub fn cc1p(&self) -> CC1P_R {
58        CC1P_R::new(((self.bits >> 1) & 1) != 0)
59    }
60    #[doc = "Bit 0 - Capture/Compare 1 output enable"]
61    #[inline(always)]
62    pub fn cc1e(&self) -> CC1E_R {
63        CC1E_R::new((self.bits & 1) != 0)
64    }
65}
66impl W {
67    #[doc = "Bit 3 - Capture/Compare 1 output Polarity"]
68    #[inline(always)]
69    pub fn cc1np(&mut self) -> CC1NP_W<3> {
70        CC1NP_W::new(self)
71    }
72    #[doc = "Bit 1 - Capture/Compare 1 output Polarity"]
73    #[inline(always)]
74    pub fn cc1p(&mut self) -> CC1P_W<1> {
75        CC1P_W::new(self)
76    }
77    #[doc = "Bit 0 - Capture/Compare 1 output enable"]
78    #[inline(always)]
79    pub fn cc1e(&mut self) -> CC1E_W<0> {
80        CC1E_W::new(self)
81    }
82    #[doc = "Writes raw bits to the register."]
83    #[inline(always)]
84    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
85        self.0.bits(bits);
86        self
87    }
88}
89#[doc = "capture/compare enable 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 [ccer](index.html) module"]
90pub struct CCER_SPEC;
91impl crate::RegisterSpec for CCER_SPEC {
92    type Ux = u32;
93}
94#[doc = "`read()` method returns [ccer::R](R) reader structure"]
95impl crate::Readable for CCER_SPEC {
96    type Reader = R;
97}
98#[doc = "`write(|w| ..)` method takes [ccer::W](W) writer structure"]
99impl crate::Writable for CCER_SPEC {
100    type Writer = W;
101}
102#[doc = "`reset()` method sets CCER to value 0"]
103impl crate::Resettable for CCER_SPEC {
104    #[inline(always)]
105    fn reset_value() -> Self::Ux {
106        0
107    }
108}