#[doc = "Register `RD_REPEAT_DATA2` reader"]
pub type R = crate::R<RD_REPEAT_DATA2_SPEC>;
#[doc = "Field `DIS_DOWNLOAD_MODE` reader - Represents whether Download mode is disable or enable. 1. Disable\\\\ 0: Enable."]
pub type DIS_DOWNLOAD_MODE_R = crate::BitReader;
#[doc = "Field `DIS_DIRECT_BOOT` reader - Represents whether direct boot mode is disabled or enabled. 1. Disable\\\\ 0: Enable."]
pub type DIS_DIRECT_BOOT_R = crate::BitReader;
#[doc = "Field `DIS_USB_SERIAL_JTAG_ROM_PRINT` reader - Represents whether print from USB-Serial-JTAG is disabled or enabled. 1. Disable\\\\ 0: Enable."]
pub type DIS_USB_SERIAL_JTAG_ROM_PRINT_R = crate::BitReader;
#[doc = "Field `DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE` reader - Represents whether the USB-Serial-JTAG download function is disabled or enabled.\\\\ 1: Disable\\\\ 0: Enable\\\\"]
pub type DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE_R = crate::BitReader;
#[doc = "Field `ENABLE_SECURITY_DOWNLOAD` reader - Represents whether security download is enabled or disabled. 1: Enable\\\\ 0: Disable."]
pub type ENABLE_SECURITY_DOWNLOAD_R = crate::BitReader;
#[doc = "Field `UART_PRINT_CONTROL` reader - Represents the types of UART printing."]
pub type UART_PRINT_CONTROL_R = crate::FieldReader;
#[doc = "Field `FORCE_SEND_RESUME` reader - Represents whether ROM code is forced to send a resume commmand during SPI boot."]
pub type FORCE_SEND_RESUME_R = crate::BitReader;
#[doc = "Field `SECURE_VERSION` reader - Represents the version used by ESP-IDF anti-rollback feature."]
pub type SECURE_VERSION_R = crate::FieldReader<u16>;
#[doc = "Field `SECURE_BOOT_DISABLE_FAST_WAKE` reader - Represents whether FAST_VERIFY_ON_WAKE is disable or enable when Secure Boot is enable."]
pub type SECURE_BOOT_DISABLE_FAST_WAKE_R = crate::BitReader;
#[doc = "Field `HYS_EN_PAD` reader - Set bits to enable hysteresis function of PAD0~27"]
pub type HYS_EN_PAD_R = crate::BitReader;
#[doc = "Field `XTS_DPA_CLK_ENABLE` reader - Represents whether xts-aes anti-dpa attack clock is enabled.\\\\ 1. Enable.\\\\ 0: Disable.\\\\"]
pub type XTS_DPA_CLK_ENABLE_R = crate::BitReader;
#[doc = "Field `XTS_DPA_PSEUDO_LEVEL` reader - Represents the pseudo round level of xts-aes anti-dpa attack.\\\\ 3: High.\\\\ 2: Moderate 1. Low\\\\ 0: Disabled\\\\"]
pub type XTS_DPA_PSEUDO_LEVEL_R = crate::FieldReader;
#[doc = "Field `DIS_WIFI6` reader - Represents thether the WIFI6 feature is enable or disabled. 1: WIFI6 is disable, 0: WIFI6 is enabled."]
pub type DIS_WIFI6_R = crate::BitReader;
#[doc = "Field `ECDSA_DISABLE_P192` reader - Represents whether to disable P192 curve in ECDSA. 1: Disabled. 0: Not disabled."]
pub type ECDSA_DISABLE_P192_R = crate::BitReader;
#[doc = "Field `ECC_FORCE_CONST_TIME` reader - Represents whether to force ecc to use const-time calculation mode. 1: Enable. 0: Disable"]
pub type ECC_FORCE_CONST_TIME_R = crate::BitReader;
impl R {
#[doc = "Bit 0 - Represents whether Download mode is disable or enable. 1. Disable\\\\ 0: Enable."]
#[inline(always)]
pub fn dis_download_mode(&self) -> DIS_DOWNLOAD_MODE_R {
DIS_DOWNLOAD_MODE_R::new((self.bits & 1) != 0)
}
#[doc = "Bit 1 - Represents whether direct boot mode is disabled or enabled. 1. Disable\\\\ 0: Enable."]
#[inline(always)]
pub fn dis_direct_boot(&self) -> DIS_DIRECT_BOOT_R {
DIS_DIRECT_BOOT_R::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bit 2 - Represents whether print from USB-Serial-JTAG is disabled or enabled. 1. Disable\\\\ 0: Enable."]
#[inline(always)]
pub fn dis_usb_serial_jtag_rom_print(&self) -> DIS_USB_SERIAL_JTAG_ROM_PRINT_R {
DIS_USB_SERIAL_JTAG_ROM_PRINT_R::new(((self.bits >> 2) & 1) != 0)
}
#[doc = "Bit 3 - Represents whether the USB-Serial-JTAG download function is disabled or enabled.\\\\ 1: Disable\\\\ 0: Enable\\\\"]
#[inline(always)]
pub fn dis_usb_serial_jtag_download_mode(&self) -> DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE_R {
DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE_R::new(((self.bits >> 3) & 1) != 0)
}
#[doc = "Bit 4 - Represents whether security download is enabled or disabled. 1: Enable\\\\ 0: Disable."]
#[inline(always)]
pub fn enable_security_download(&self) -> ENABLE_SECURITY_DOWNLOAD_R {
ENABLE_SECURITY_DOWNLOAD_R::new(((self.bits >> 4) & 1) != 0)
}
#[doc = "Bits 5:6 - Represents the types of UART printing."]
#[inline(always)]
pub fn uart_print_control(&self) -> UART_PRINT_CONTROL_R {
UART_PRINT_CONTROL_R::new(((self.bits >> 5) & 3) as u8)
}
#[doc = "Bit 7 - Represents whether ROM code is forced to send a resume commmand during SPI boot."]
#[inline(always)]
pub fn force_send_resume(&self) -> FORCE_SEND_RESUME_R {
FORCE_SEND_RESUME_R::new(((self.bits >> 7) & 1) != 0)
}
#[doc = "Bits 8:23 - Represents the version used by ESP-IDF anti-rollback feature."]
#[inline(always)]
pub fn secure_version(&self) -> SECURE_VERSION_R {
SECURE_VERSION_R::new(((self.bits >> 8) & 0xffff) as u16)
}
#[doc = "Bit 24 - Represents whether FAST_VERIFY_ON_WAKE is disable or enable when Secure Boot is enable."]
#[inline(always)]
pub fn secure_boot_disable_fast_wake(&self) -> SECURE_BOOT_DISABLE_FAST_WAKE_R {
SECURE_BOOT_DISABLE_FAST_WAKE_R::new(((self.bits >> 24) & 1) != 0)
}
#[doc = "Bit 25 - Set bits to enable hysteresis function of PAD0~27"]
#[inline(always)]
pub fn hys_en_pad(&self) -> HYS_EN_PAD_R {
HYS_EN_PAD_R::new(((self.bits >> 25) & 1) != 0)
}
#[doc = "Bit 26 - Represents whether xts-aes anti-dpa attack clock is enabled.\\\\ 1. Enable.\\\\ 0: Disable.\\\\"]
#[inline(always)]
pub fn xts_dpa_clk_enable(&self) -> XTS_DPA_CLK_ENABLE_R {
XTS_DPA_CLK_ENABLE_R::new(((self.bits >> 26) & 1) != 0)
}
#[doc = "Bits 27:28 - Represents the pseudo round level of xts-aes anti-dpa attack.\\\\ 3: High.\\\\ 2: Moderate 1. Low\\\\ 0: Disabled\\\\"]
#[inline(always)]
pub fn xts_dpa_pseudo_level(&self) -> XTS_DPA_PSEUDO_LEVEL_R {
XTS_DPA_PSEUDO_LEVEL_R::new(((self.bits >> 27) & 3) as u8)
}
#[doc = "Bit 29 - Represents thether the WIFI6 feature is enable or disabled. 1: WIFI6 is disable, 0: WIFI6 is enabled."]
#[inline(always)]
pub fn dis_wifi6(&self) -> DIS_WIFI6_R {
DIS_WIFI6_R::new(((self.bits >> 29) & 1) != 0)
}
#[doc = "Bit 30 - Represents whether to disable P192 curve in ECDSA. 1: Disabled. 0: Not disabled."]
#[inline(always)]
pub fn ecdsa_disable_p192(&self) -> ECDSA_DISABLE_P192_R {
ECDSA_DISABLE_P192_R::new(((self.bits >> 30) & 1) != 0)
}
#[doc = "Bit 31 - Represents whether to force ecc to use const-time calculation mode. 1: Enable. 0: Disable"]
#[inline(always)]
pub fn ecc_force_const_time(&self) -> ECC_FORCE_CONST_TIME_R {
ECC_FORCE_CONST_TIME_R::new(((self.bits >> 31) & 1) != 0)
}
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("RD_REPEAT_DATA2")
.field("dis_download_mode", &self.dis_download_mode())
.field("dis_direct_boot", &self.dis_direct_boot())
.field(
"dis_usb_serial_jtag_rom_print",
&self.dis_usb_serial_jtag_rom_print(),
)
.field(
"dis_usb_serial_jtag_download_mode",
&self.dis_usb_serial_jtag_download_mode(),
)
.field("enable_security_download", &self.enable_security_download())
.field("uart_print_control", &self.uart_print_control())
.field("force_send_resume", &self.force_send_resume())
.field("secure_version", &self.secure_version())
.field(
"secure_boot_disable_fast_wake",
&self.secure_boot_disable_fast_wake(),
)
.field("hys_en_pad", &self.hys_en_pad())
.field("xts_dpa_clk_enable", &self.xts_dpa_clk_enable())
.field("xts_dpa_pseudo_level", &self.xts_dpa_pseudo_level())
.field("dis_wifi6", &self.dis_wifi6())
.field("ecdsa_disable_p192", &self.ecdsa_disable_p192())
.field("ecc_force_const_time", &self.ecc_force_const_time())
.finish()
}
}
#[doc = "Represents rd_repeat_data\n\nYou can [`read`](crate::Reg::read) this register and get [`rd_repeat_data2::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct RD_REPEAT_DATA2_SPEC;
impl crate::RegisterSpec for RD_REPEAT_DATA2_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [`rd_repeat_data2::R`](R) reader structure"]
impl crate::Readable for RD_REPEAT_DATA2_SPEC {}
#[doc = "`reset()` method sets RD_REPEAT_DATA2 to value 0"]
impl crate::Resettable for RD_REPEAT_DATA2_SPEC {}