esp32p4/sdhost/
enshift.rs1#[doc = "Register `ENSHIFT` reader"]
2pub type R = crate::R<ENSHIFT_SPEC>;
3#[doc = "Register `ENSHIFT` writer"]
4pub type W = crate::W<ENSHIFT_SPEC>;
5#[doc = "Field `ENABLE_SHIFT` reader - Control for the amount of phase shift provided on the default enables in the design.Two bits assigned for each card. 2'b00-Default phase shift. 2'b01-Enables shifted to next immediate positive edge. 2'b10-Enables shifted to next immediate negative edge. 2'b11-Reserved."]
6pub type ENABLE_SHIFT_R = crate::FieldReader;
7#[doc = "Field `ENABLE_SHIFT` writer - Control for the amount of phase shift provided on the default enables in the design.Two bits assigned for each card. 2'b00-Default phase shift. 2'b01-Enables shifted to next immediate positive edge. 2'b10-Enables shifted to next immediate negative edge. 2'b11-Reserved."]
8pub type ENABLE_SHIFT_W<'a, REG> = crate::FieldWriter<'a, REG, 4>;
9impl R {
10 #[doc = "Bits 0:3 - Control for the amount of phase shift provided on the default enables in the design.Two bits assigned for each card. 2'b00-Default phase shift. 2'b01-Enables shifted to next immediate positive edge. 2'b10-Enables shifted to next immediate negative edge. 2'b11-Reserved."]
11 #[inline(always)]
12 pub fn enable_shift(&self) -> ENABLE_SHIFT_R {
13 ENABLE_SHIFT_R::new((self.bits & 0x0f) as u8)
14 }
15}
16#[cfg(feature = "impl-register-debug")]
17impl core::fmt::Debug for R {
18 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
19 f.debug_struct("ENSHIFT")
20 .field(
21 "enable_shift",
22 &format_args!("{}", self.enable_shift().bits()),
23 )
24 .finish()
25 }
26}
27#[cfg(feature = "impl-register-debug")]
28impl core::fmt::Debug for crate::generic::Reg<ENSHIFT_SPEC> {
29 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
30 core::fmt::Debug::fmt(&self.read(), f)
31 }
32}
33impl W {
34 #[doc = "Bits 0:3 - Control for the amount of phase shift provided on the default enables in the design.Two bits assigned for each card. 2'b00-Default phase shift. 2'b01-Enables shifted to next immediate positive edge. 2'b10-Enables shifted to next immediate negative edge. 2'b11-Reserved."]
35 #[inline(always)]
36 #[must_use]
37 pub fn enable_shift(&mut self) -> ENABLE_SHIFT_W<ENSHIFT_SPEC> {
38 ENABLE_SHIFT_W::new(self, 0)
39 }
40}
41#[doc = "Enable Phase Shift register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`enshift::R`](R). You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`enshift::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
42pub struct ENSHIFT_SPEC;
43impl crate::RegisterSpec for ENSHIFT_SPEC {
44 type Ux = u32;
45}
46#[doc = "`read()` method returns [`enshift::R`](R) reader structure"]
47impl crate::Readable for ENSHIFT_SPEC {}
48#[doc = "`write(|w| ..)` method takes [`enshift::W`](W) writer structure"]
49impl crate::Writable for ENSHIFT_SPEC {
50 type Safety = crate::Unsafe;
51 const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
52 const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
53}
54#[doc = "`reset()` method sets ENSHIFT to value 0"]
55impl crate::Resettable for ENSHIFT_SPEC {
56 const RESET_VALUE: u32 = 0;
57}