py32f0/py32f030/tim16/
ccer.rs1pub 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}
16pub 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}
37pub type CC1E_R = crate::BitReader<bool>;
39pub type CC1E_W<'a, const O: u8> = crate::BitWriter<'a, u32, CCER_SPEC, bool, O>;
41pub type CC1P_R = crate::BitReader<bool>;
43pub type CC1P_W<'a, const O: u8> = crate::BitWriter<'a, u32, CCER_SPEC, bool, O>;
45pub type CC1NE_R = crate::BitReader<bool>;
47pub type CC1NE_W<'a, const O: u8> = crate::BitWriter<'a, u32, CCER_SPEC, bool, O>;
49pub type CC1NP_R = crate::BitReader<bool>;
51pub type CC1NP_W<'a, const O: u8> = crate::BitWriter<'a, u32, CCER_SPEC, bool, O>;
53impl R {
54 #[inline(always)]
56 pub fn cc1e(&self) -> CC1E_R {
57 CC1E_R::new((self.bits & 1) != 0)
58 }
59 #[inline(always)]
61 pub fn cc1p(&self) -> CC1P_R {
62 CC1P_R::new(((self.bits >> 1) & 1) != 0)
63 }
64 #[inline(always)]
66 pub fn cc1ne(&self) -> CC1NE_R {
67 CC1NE_R::new(((self.bits >> 2) & 1) != 0)
68 }
69 #[inline(always)]
71 pub fn cc1np(&self) -> CC1NP_R {
72 CC1NP_R::new(((self.bits >> 3) & 1) != 0)
73 }
74}
75impl W {
76 #[inline(always)]
78 #[must_use]
79 pub fn cc1e(&mut self) -> CC1E_W<0> {
80 CC1E_W::new(self)
81 }
82 #[inline(always)]
84 #[must_use]
85 pub fn cc1p(&mut self) -> CC1P_W<1> {
86 CC1P_W::new(self)
87 }
88 #[inline(always)]
90 #[must_use]
91 pub fn cc1ne(&mut self) -> CC1NE_W<2> {
92 CC1NE_W::new(self)
93 }
94 #[inline(always)]
96 #[must_use]
97 pub fn cc1np(&mut self) -> CC1NP_W<3> {
98 CC1NP_W::new(self)
99 }
100 #[inline(always)]
102 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
103 self.0.bits(bits);
104 self
105 }
106}
107pub struct CCER_SPEC;
113impl crate::RegisterSpec for CCER_SPEC {
114 type Ux = u32;
115}
116impl crate::Readable for CCER_SPEC {
118 type Reader = R;
119}
120impl crate::Writable for CCER_SPEC {
122 type Writer = W;
123 const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
124 const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
125}
126impl crate::Resettable for CCER_SPEC {
128 const RESET_VALUE: Self::Ux = 0;
129}