esp32/dport/
pro_intrusion_ctrl.rs1#[doc = "Register `PRO_INTRUSION_CTRL` reader"]
2pub type R = crate::R<PRO_INTRUSION_CTRL_SPEC>;
3#[doc = "Register `PRO_INTRUSION_CTRL` writer"]
4pub type W = crate::W<PRO_INTRUSION_CTRL_SPEC>;
5#[doc = "Field `PRO_INTRUSION_RECORD_RESET_N` reader - "]
6pub type PRO_INTRUSION_RECORD_RESET_N_R = crate::BitReader;
7#[doc = "Field `PRO_INTRUSION_RECORD_RESET_N` writer - "]
8pub type PRO_INTRUSION_RECORD_RESET_N_W<'a, REG> = crate::BitWriter<'a, REG>;
9impl R {
10 #[doc = "Bit 0"]
11 #[inline(always)]
12 pub fn pro_intrusion_record_reset_n(&self) -> PRO_INTRUSION_RECORD_RESET_N_R {
13 PRO_INTRUSION_RECORD_RESET_N_R::new((self.bits & 1) != 0)
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("PRO_INTRUSION_CTRL")
20 .field(
21 "pro_intrusion_record_reset_n",
22 &self.pro_intrusion_record_reset_n(),
23 )
24 .finish()
25 }
26}
27impl W {
28 #[doc = "Bit 0"]
29 #[inline(always)]
30 pub fn pro_intrusion_record_reset_n(
31 &mut self,
32 ) -> PRO_INTRUSION_RECORD_RESET_N_W<PRO_INTRUSION_CTRL_SPEC> {
33 PRO_INTRUSION_RECORD_RESET_N_W::new(self, 0)
34 }
35}
36#[doc = "\n\nYou can [`read`](crate::Reg::read) this register and get [`pro_intrusion_ctrl::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pro_intrusion_ctrl::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
37pub struct PRO_INTRUSION_CTRL_SPEC;
38impl crate::RegisterSpec for PRO_INTRUSION_CTRL_SPEC {
39 type Ux = u32;
40}
41#[doc = "`read()` method returns [`pro_intrusion_ctrl::R`](R) reader structure"]
42impl crate::Readable for PRO_INTRUSION_CTRL_SPEC {}
43#[doc = "`write(|w| ..)` method takes [`pro_intrusion_ctrl::W`](W) writer structure"]
44impl crate::Writable for PRO_INTRUSION_CTRL_SPEC {
45 type Safety = crate::Unsafe;
46 const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
47 const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
48}
49#[doc = "`reset()` method sets PRO_INTRUSION_CTRL to value 0x01"]
50impl crate::Resettable for PRO_INTRUSION_CTRL_SPEC {
51 const RESET_VALUE: u32 = 0x01;
52}