esp32c2/efuse/
rd_repeat_err.rs

1#[doc = "Register `RD_REPEAT_ERR` reader"]
2pub type R = crate::R<RD_REPEAT_ERR_SPEC>;
3#[doc = "Field `RD_DIS_ERR` reader - If any bit in RD_DIS is 1, then it indicates a programming error."]
4pub type RD_DIS_ERR_R = crate::FieldReader;
5#[doc = "Field `WDT_DELAY_SEL_ERR` reader - If any bit in WDT_DELAY_SEL is 1, then it indicates a programming error."]
6pub type WDT_DELAY_SEL_ERR_R = crate::FieldReader;
7#[doc = "Field `DIS_PAD_JTAG_ERR` reader - If any bit in DIS_PAD_JTAG is 1, then it indicates a programming error."]
8pub type DIS_PAD_JTAG_ERR_R = crate::BitReader;
9#[doc = "Field `DIS_DOWNLOAD_ICACHE_ERR` reader - If any bit in this filed is 1, then it indicates a programming error."]
10pub type DIS_DOWNLOAD_ICACHE_ERR_R = crate::BitReader;
11#[doc = "Field `DIS_DOWNLOAD_MANUAL_ENCRYPT_ERR` reader - If any bit in DIS_DOWNLOAD_MANUAL_ENCRYPT is 1, then it indicates a programming error."]
12pub type DIS_DOWNLOAD_MANUAL_ENCRYPT_ERR_R = crate::BitReader;
13#[doc = "Field `SPI_BOOT_ENCRYPT_DECRYPT_CNT_ERR` reader - If any bit in SPI_BOOT_ENCRYPT_DECRYPT_CNT is 1, then it indicates a programming error."]
14pub type SPI_BOOT_ENCRYPT_DECRYPT_CNT_ERR_R = crate::FieldReader;
15#[doc = "Field `XTS_KEY_LENGTH_256_ERR` reader - If any bit in XTS_KEY_LENGTH_256 is 1, then it indicates a programming error."]
16pub type XTS_KEY_LENGTH_256_ERR_R = crate::BitReader;
17#[doc = "Field `UART_PRINT_CONTROL_ERR` reader - If any bit in UART_PRINT_CONTROL is 1, then it indicates a programming error."]
18pub type UART_PRINT_CONTROL_ERR_R = crate::FieldReader;
19#[doc = "Field `FORCE_SEND_RESUME_ERR` reader - If any bit in FORCE_SEND_RESUME is 1, then it indicates a programming error."]
20pub type FORCE_SEND_RESUME_ERR_R = crate::BitReader;
21#[doc = "Field `DIS_DOWNLOAD_MODE_ERR` reader - If any bit in this filed is 1, then it indicates a programming error."]
22pub type DIS_DOWNLOAD_MODE_ERR_R = crate::BitReader;
23#[doc = "Field `DIS_DIRECT_BOOT_ERR` reader - If any bit in this filed is 1, then it indicates a programming error."]
24pub type DIS_DIRECT_BOOT_ERR_R = crate::BitReader;
25#[doc = "Field `ENABLE_SECURITY_DOWNLOAD_ERR` reader - If any bit in this filed is 1, then it indicates a programming error."]
26pub type ENABLE_SECURITY_DOWNLOAD_ERR_R = crate::BitReader;
27#[doc = "Field `FLASH_TPUW_ERR` reader - If any bit in this filed is 1, then it indicates a programming error."]
28pub type FLASH_TPUW_ERR_R = crate::FieldReader;
29#[doc = "Field `SECURE_BOOT_EN_ERR` reader - If any bit in this filed is 1, then it indicates a programming error."]
30pub type SECURE_BOOT_EN_ERR_R = crate::BitReader;
31#[doc = "Field `RPT4_RESERVED_ERR` reader - Reserved."]
32pub type RPT4_RESERVED_ERR_R = crate::FieldReader<u16>;
33impl R {
34    #[doc = "Bits 0:1 - If any bit in RD_DIS is 1, then it indicates a programming error."]
35    #[inline(always)]
36    pub fn rd_dis_err(&self) -> RD_DIS_ERR_R {
37        RD_DIS_ERR_R::new((self.bits & 3) as u8)
38    }
39    #[doc = "Bits 2:3 - If any bit in WDT_DELAY_SEL is 1, then it indicates a programming error."]
40    #[inline(always)]
41    pub fn wdt_delay_sel_err(&self) -> WDT_DELAY_SEL_ERR_R {
42        WDT_DELAY_SEL_ERR_R::new(((self.bits >> 2) & 3) as u8)
43    }
44    #[doc = "Bit 4 - If any bit in DIS_PAD_JTAG is 1, then it indicates a programming error."]
45    #[inline(always)]
46    pub fn dis_pad_jtag_err(&self) -> DIS_PAD_JTAG_ERR_R {
47        DIS_PAD_JTAG_ERR_R::new(((self.bits >> 4) & 1) != 0)
48    }
49    #[doc = "Bit 5 - If any bit in this filed is 1, then it indicates a programming error."]
50    #[inline(always)]
51    pub fn dis_download_icache_err(&self) -> DIS_DOWNLOAD_ICACHE_ERR_R {
52        DIS_DOWNLOAD_ICACHE_ERR_R::new(((self.bits >> 5) & 1) != 0)
53    }
54    #[doc = "Bit 6 - If any bit in DIS_DOWNLOAD_MANUAL_ENCRYPT is 1, then it indicates a programming error."]
55    #[inline(always)]
56    pub fn dis_download_manual_encrypt_err(&self) -> DIS_DOWNLOAD_MANUAL_ENCRYPT_ERR_R {
57        DIS_DOWNLOAD_MANUAL_ENCRYPT_ERR_R::new(((self.bits >> 6) & 1) != 0)
58    }
59    #[doc = "Bits 7:9 - If any bit in SPI_BOOT_ENCRYPT_DECRYPT_CNT is 1, then it indicates a programming error."]
60    #[inline(always)]
61    pub fn spi_boot_encrypt_decrypt_cnt_err(&self) -> SPI_BOOT_ENCRYPT_DECRYPT_CNT_ERR_R {
62        SPI_BOOT_ENCRYPT_DECRYPT_CNT_ERR_R::new(((self.bits >> 7) & 7) as u8)
63    }
64    #[doc = "Bit 10 - If any bit in XTS_KEY_LENGTH_256 is 1, then it indicates a programming error."]
65    #[inline(always)]
66    pub fn xts_key_length_256_err(&self) -> XTS_KEY_LENGTH_256_ERR_R {
67        XTS_KEY_LENGTH_256_ERR_R::new(((self.bits >> 10) & 1) != 0)
68    }
69    #[doc = "Bits 11:12 - If any bit in UART_PRINT_CONTROL is 1, then it indicates a programming error."]
70    #[inline(always)]
71    pub fn uart_print_control_err(&self) -> UART_PRINT_CONTROL_ERR_R {
72        UART_PRINT_CONTROL_ERR_R::new(((self.bits >> 11) & 3) as u8)
73    }
74    #[doc = "Bit 13 - If any bit in FORCE_SEND_RESUME is 1, then it indicates a programming error."]
75    #[inline(always)]
76    pub fn force_send_resume_err(&self) -> FORCE_SEND_RESUME_ERR_R {
77        FORCE_SEND_RESUME_ERR_R::new(((self.bits >> 13) & 1) != 0)
78    }
79    #[doc = "Bit 14 - If any bit in this filed is 1, then it indicates a programming error."]
80    #[inline(always)]
81    pub fn dis_download_mode_err(&self) -> DIS_DOWNLOAD_MODE_ERR_R {
82        DIS_DOWNLOAD_MODE_ERR_R::new(((self.bits >> 14) & 1) != 0)
83    }
84    #[doc = "Bit 15 - If any bit in this filed is 1, then it indicates a programming error."]
85    #[inline(always)]
86    pub fn dis_direct_boot_err(&self) -> DIS_DIRECT_BOOT_ERR_R {
87        DIS_DIRECT_BOOT_ERR_R::new(((self.bits >> 15) & 1) != 0)
88    }
89    #[doc = "Bit 16 - If any bit in this filed is 1, then it indicates a programming error."]
90    #[inline(always)]
91    pub fn enable_security_download_err(&self) -> ENABLE_SECURITY_DOWNLOAD_ERR_R {
92        ENABLE_SECURITY_DOWNLOAD_ERR_R::new(((self.bits >> 16) & 1) != 0)
93    }
94    #[doc = "Bits 17:20 - If any bit in this filed is 1, then it indicates a programming error."]
95    #[inline(always)]
96    pub fn flash_tpuw_err(&self) -> FLASH_TPUW_ERR_R {
97        FLASH_TPUW_ERR_R::new(((self.bits >> 17) & 0x0f) as u8)
98    }
99    #[doc = "Bit 21 - If any bit in this filed is 1, then it indicates a programming error."]
100    #[inline(always)]
101    pub fn secure_boot_en_err(&self) -> SECURE_BOOT_EN_ERR_R {
102        SECURE_BOOT_EN_ERR_R::new(((self.bits >> 21) & 1) != 0)
103    }
104    #[doc = "Bits 22:31 - Reserved."]
105    #[inline(always)]
106    pub fn rpt4_reserved_err(&self) -> RPT4_RESERVED_ERR_R {
107        RPT4_RESERVED_ERR_R::new(((self.bits >> 22) & 0x03ff) as u16)
108    }
109}
110#[cfg(feature = "impl-register-debug")]
111impl core::fmt::Debug for R {
112    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
113        f.debug_struct("RD_REPEAT_ERR")
114            .field("rd_dis_err", &self.rd_dis_err())
115            .field("wdt_delay_sel_err", &self.wdt_delay_sel_err())
116            .field("dis_pad_jtag_err", &self.dis_pad_jtag_err())
117            .field("dis_download_icache_err", &self.dis_download_icache_err())
118            .field(
119                "dis_download_manual_encrypt_err",
120                &self.dis_download_manual_encrypt_err(),
121            )
122            .field(
123                "spi_boot_encrypt_decrypt_cnt_err",
124                &self.spi_boot_encrypt_decrypt_cnt_err(),
125            )
126            .field("xts_key_length_256_err", &self.xts_key_length_256_err())
127            .field("uart_print_control_err", &self.uart_print_control_err())
128            .field("force_send_resume_err", &self.force_send_resume_err())
129            .field("dis_download_mode_err", &self.dis_download_mode_err())
130            .field("dis_direct_boot_err", &self.dis_direct_boot_err())
131            .field(
132                "enable_security_download_err",
133                &self.enable_security_download_err(),
134            )
135            .field("flash_tpuw_err", &self.flash_tpuw_err())
136            .field("secure_boot_en_err", &self.secure_boot_en_err())
137            .field("rpt4_reserved_err", &self.rpt4_reserved_err())
138            .finish()
139    }
140}
141#[doc = "Programming error record register 0 of BLOCK0.\n\nYou can [`read`](crate::Reg::read) this register and get [`rd_repeat_err::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
142pub struct RD_REPEAT_ERR_SPEC;
143impl crate::RegisterSpec for RD_REPEAT_ERR_SPEC {
144    type Ux = u32;
145}
146#[doc = "`read()` method returns [`rd_repeat_err::R`](R) reader structure"]
147impl crate::Readable for RD_REPEAT_ERR_SPEC {}
148#[doc = "`reset()` method sets RD_REPEAT_ERR to value 0"]
149impl crate::Resettable for RD_REPEAT_ERR_SPEC {
150    const RESET_VALUE: u32 = 0;
151}