1#[doc = "Register `WRTPRT` reader"]
2pub type R = crate::R<WRTPRT_SPEC>;
3#[doc = "Field `WRITE_PROTECT` reader - Value on sdhost_card_write_prt input ports (1 bit per card). 1 represents write protection. Only NUM_CARDS number of bits are implemented."]
4pub type WRITE_PROTECT_R = crate::FieldReader;
5impl R {
6 #[doc = "Bits 0:1 - Value on sdhost_card_write_prt input ports (1 bit per card). 1 represents write protection. Only NUM_CARDS number of bits are implemented."]
7 #[inline(always)]
8 pub fn write_protect(&self) -> WRITE_PROTECT_R {
9 WRITE_PROTECT_R::new((self.bits & 3) as u8)
10 }
11}
12#[cfg(feature = "impl-register-debug")]
13impl core::fmt::Debug for R {
14 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
15 f.debug_struct("WRTPRT")
16 .field("write_protect", &self.write_protect())
17 .finish()
18 }
19}
20#[doc = "Card write protection (WP) status register\n\nYou can [`read`](crate::Reg::read) this register and get [`wrtprt::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
21pub struct WRTPRT_SPEC;
22impl crate::RegisterSpec for WRTPRT_SPEC {
23 type Ux = u32;
24}
25#[doc = "`read()` method returns [`wrtprt::R`](R) reader structure"]
26impl crate::Readable for WRTPRT_SPEC {}
27#[doc = "`reset()` method sets WRTPRT to value 0"]
28impl crate::Resettable for WRTPRT_SPEC {
29 const RESET_VALUE: u32 = 0;
30}