atsam4e8e_pac/matrix/
matrix_mrcr.rs

1#[doc = "Register `MATRIX_MRCR` reader"]
2pub struct R(crate::R<MATRIX_MRCR_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<MATRIX_MRCR_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<MATRIX_MRCR_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<MATRIX_MRCR_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `MATRIX_MRCR` writer"]
17pub struct W(crate::W<MATRIX_MRCR_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<MATRIX_MRCR_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<MATRIX_MRCR_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<MATRIX_MRCR_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `RCB0` reader - Remap Command Bit for Master 0"]
38pub type RCB0_R = crate::BitReader<bool>;
39#[doc = "Field `RCB0` writer - Remap Command Bit for Master 0"]
40pub type RCB0_W<'a, const O: u8> = crate::BitWriter<'a, u32, MATRIX_MRCR_SPEC, bool, O>;
41#[doc = "Field `RCB1` reader - Remap Command Bit for Master 1"]
42pub type RCB1_R = crate::BitReader<bool>;
43#[doc = "Field `RCB1` writer - Remap Command Bit for Master 1"]
44pub type RCB1_W<'a, const O: u8> = crate::BitWriter<'a, u32, MATRIX_MRCR_SPEC, bool, O>;
45#[doc = "Field `RCB2` reader - Remap Command Bit for Master 2"]
46pub type RCB2_R = crate::BitReader<bool>;
47#[doc = "Field `RCB2` writer - Remap Command Bit for Master 2"]
48pub type RCB2_W<'a, const O: u8> = crate::BitWriter<'a, u32, MATRIX_MRCR_SPEC, bool, O>;
49#[doc = "Field `RCB3` reader - Remap Command Bit for Master 3"]
50pub type RCB3_R = crate::BitReader<bool>;
51#[doc = "Field `RCB3` writer - Remap Command Bit for Master 3"]
52pub type RCB3_W<'a, const O: u8> = crate::BitWriter<'a, u32, MATRIX_MRCR_SPEC, bool, O>;
53#[doc = "Field `RCB4` reader - Remap Command Bit for Master 4"]
54pub type RCB4_R = crate::BitReader<bool>;
55#[doc = "Field `RCB4` writer - Remap Command Bit for Master 4"]
56pub type RCB4_W<'a, const O: u8> = crate::BitWriter<'a, u32, MATRIX_MRCR_SPEC, bool, O>;
57#[doc = "Field `RCB5` reader - Remap Command Bit for Master 5"]
58pub type RCB5_R = crate::BitReader<bool>;
59#[doc = "Field `RCB5` writer - Remap Command Bit for Master 5"]
60pub type RCB5_W<'a, const O: u8> = crate::BitWriter<'a, u32, MATRIX_MRCR_SPEC, bool, O>;
61#[doc = "Field `RCB6` reader - Remap Command Bit for Master 6"]
62pub type RCB6_R = crate::BitReader<bool>;
63#[doc = "Field `RCB6` writer - Remap Command Bit for Master 6"]
64pub type RCB6_W<'a, const O: u8> = crate::BitWriter<'a, u32, MATRIX_MRCR_SPEC, bool, O>;
65impl R {
66    #[doc = "Bit 0 - Remap Command Bit for Master 0"]
67    #[inline(always)]
68    pub fn rcb0(&self) -> RCB0_R {
69        RCB0_R::new((self.bits & 1) != 0)
70    }
71    #[doc = "Bit 1 - Remap Command Bit for Master 1"]
72    #[inline(always)]
73    pub fn rcb1(&self) -> RCB1_R {
74        RCB1_R::new(((self.bits >> 1) & 1) != 0)
75    }
76    #[doc = "Bit 2 - Remap Command Bit for Master 2"]
77    #[inline(always)]
78    pub fn rcb2(&self) -> RCB2_R {
79        RCB2_R::new(((self.bits >> 2) & 1) != 0)
80    }
81    #[doc = "Bit 3 - Remap Command Bit for Master 3"]
82    #[inline(always)]
83    pub fn rcb3(&self) -> RCB3_R {
84        RCB3_R::new(((self.bits >> 3) & 1) != 0)
85    }
86    #[doc = "Bit 4 - Remap Command Bit for Master 4"]
87    #[inline(always)]
88    pub fn rcb4(&self) -> RCB4_R {
89        RCB4_R::new(((self.bits >> 4) & 1) != 0)
90    }
91    #[doc = "Bit 5 - Remap Command Bit for Master 5"]
92    #[inline(always)]
93    pub fn rcb5(&self) -> RCB5_R {
94        RCB5_R::new(((self.bits >> 5) & 1) != 0)
95    }
96    #[doc = "Bit 6 - Remap Command Bit for Master 6"]
97    #[inline(always)]
98    pub fn rcb6(&self) -> RCB6_R {
99        RCB6_R::new(((self.bits >> 6) & 1) != 0)
100    }
101}
102impl W {
103    #[doc = "Bit 0 - Remap Command Bit for Master 0"]
104    #[inline(always)]
105    #[must_use]
106    pub fn rcb0(&mut self) -> RCB0_W<0> {
107        RCB0_W::new(self)
108    }
109    #[doc = "Bit 1 - Remap Command Bit for Master 1"]
110    #[inline(always)]
111    #[must_use]
112    pub fn rcb1(&mut self) -> RCB1_W<1> {
113        RCB1_W::new(self)
114    }
115    #[doc = "Bit 2 - Remap Command Bit for Master 2"]
116    #[inline(always)]
117    #[must_use]
118    pub fn rcb2(&mut self) -> RCB2_W<2> {
119        RCB2_W::new(self)
120    }
121    #[doc = "Bit 3 - Remap Command Bit for Master 3"]
122    #[inline(always)]
123    #[must_use]
124    pub fn rcb3(&mut self) -> RCB3_W<3> {
125        RCB3_W::new(self)
126    }
127    #[doc = "Bit 4 - Remap Command Bit for Master 4"]
128    #[inline(always)]
129    #[must_use]
130    pub fn rcb4(&mut self) -> RCB4_W<4> {
131        RCB4_W::new(self)
132    }
133    #[doc = "Bit 5 - Remap Command Bit for Master 5"]
134    #[inline(always)]
135    #[must_use]
136    pub fn rcb5(&mut self) -> RCB5_W<5> {
137        RCB5_W::new(self)
138    }
139    #[doc = "Bit 6 - Remap Command Bit for Master 6"]
140    #[inline(always)]
141    #[must_use]
142    pub fn rcb6(&mut self) -> RCB6_W<6> {
143        RCB6_W::new(self)
144    }
145    #[doc = "Writes raw bits to the register."]
146    #[inline(always)]
147    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
148        self.0.bits(bits);
149        self
150    }
151}
152#[doc = "Master Remap Control 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 [matrix_mrcr](index.html) module"]
153pub struct MATRIX_MRCR_SPEC;
154impl crate::RegisterSpec for MATRIX_MRCR_SPEC {
155    type Ux = u32;
156}
157#[doc = "`read()` method returns [matrix_mrcr::R](R) reader structure"]
158impl crate::Readable for MATRIX_MRCR_SPEC {
159    type Reader = R;
160}
161#[doc = "`write(|w| ..)` method takes [matrix_mrcr::W](W) writer structure"]
162impl crate::Writable for MATRIX_MRCR_SPEC {
163    type Writer = W;
164    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
165    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
166}
167#[doc = "`reset()` method sets MATRIX_MRCR to value 0"]
168impl crate::Resettable for MATRIX_MRCR_SPEC {
169    const RESET_VALUE: Self::Ux = 0;
170}