forked from esp-rs/esp-pacs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Align RSA interrupt enable register/field name for S2/S3 with other c…
…hips
- Loading branch information
1 parent
317f89c
commit 33e4212
Showing
8 changed files
with
161 additions
and
141 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#[doc = "Register `INT_ENA` reader"] | ||
pub type R = crate::R<INT_ENA_SPEC>; | ||
#[doc = "Register `INT_ENA` writer"] | ||
pub type W = crate::W<INT_ENA_SPEC>; | ||
#[doc = "Field `INT_ENA` reader - Set this bit to 1 to enable the RSA interrupt. This option is enabled by default."] | ||
pub type INT_ENA_R = crate::BitReader; | ||
#[doc = "Field `INT_ENA` writer - Set this bit to 1 to enable the RSA interrupt. This option is enabled by default."] | ||
pub type INT_ENA_W<'a, REG> = crate::BitWriter<'a, REG>; | ||
impl R { | ||
#[doc = "Bit 0 - Set this bit to 1 to enable the RSA interrupt. This option is enabled by default."] | ||
#[inline(always)] | ||
pub fn int_ena(&self) -> INT_ENA_R { | ||
INT_ENA_R::new((self.bits & 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("INT_ENA") | ||
.field("int_ena", &self.int_ena()) | ||
.finish() | ||
} | ||
} | ||
impl W { | ||
#[doc = "Bit 0 - Set this bit to 1 to enable the RSA interrupt. This option is enabled by default."] | ||
#[inline(always)] | ||
#[must_use] | ||
pub fn int_ena(&mut self) -> INT_ENA_W<INT_ENA_SPEC> { | ||
INT_ENA_W::new(self, 0) | ||
} | ||
} | ||
#[doc = "RSA interrupt enable register\n\nYou can [`read`](crate::Reg::read) this register and get [`int_ena::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`int_ena::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."] | ||
pub struct INT_ENA_SPEC; | ||
impl crate::RegisterSpec for INT_ENA_SPEC { | ||
type Ux = u32; | ||
} | ||
#[doc = "`read()` method returns [`int_ena::R`](R) reader structure"] | ||
impl crate::Readable for INT_ENA_SPEC {} | ||
#[doc = "`write(|w| ..)` method takes [`int_ena::W`](W) writer structure"] | ||
impl crate::Writable for INT_ENA_SPEC { | ||
type Safety = crate::Unsafe; | ||
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; | ||
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; | ||
} | ||
#[doc = "`reset()` method sets INT_ENA to value 0x01"] | ||
impl crate::Resettable for INT_ENA_SPEC { | ||
const RESET_VALUE: u32 = 0x01; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
#[doc = "Register `INT_ENA` reader"] | ||
pub type R = crate::R<INT_ENA_SPEC>; | ||
#[doc = "Register `INT_ENA` writer"] | ||
pub type W = crate::W<INT_ENA_SPEC>; | ||
#[doc = "Field `INT_ENA` reader - Set this bit to 1 to enable the RSA interrupt. This option is enabled by default."] | ||
pub type INT_ENA_R = crate::BitReader; | ||
#[doc = "Field `INT_ENA` writer - Set this bit to 1 to enable the RSA interrupt. This option is enabled by default."] | ||
pub type INT_ENA_W<'a, REG> = crate::BitWriter<'a, REG>; | ||
impl R { | ||
#[doc = "Bit 0 - Set this bit to 1 to enable the RSA interrupt. This option is enabled by default."] | ||
#[inline(always)] | ||
pub fn int_ena(&self) -> INT_ENA_R { | ||
INT_ENA_R::new((self.bits & 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("INT_ENA") | ||
.field("int_ena", &self.int_ena()) | ||
.finish() | ||
} | ||
} | ||
impl W { | ||
#[doc = "Bit 0 - Set this bit to 1 to enable the RSA interrupt. This option is enabled by default."] | ||
#[inline(always)] | ||
#[must_use] | ||
pub fn int_ena(&mut self) -> INT_ENA_W<INT_ENA_SPEC> { | ||
INT_ENA_W::new(self, 0) | ||
} | ||
} | ||
#[doc = "RSA interrupt enable register\n\nYou can [`read`](crate::Reg::read) this register and get [`int_ena::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`int_ena::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."] | ||
pub struct INT_ENA_SPEC; | ||
impl crate::RegisterSpec for INT_ENA_SPEC { | ||
type Ux = u32; | ||
} | ||
#[doc = "`read()` method returns [`int_ena::R`](R) reader structure"] | ||
impl crate::Readable for INT_ENA_SPEC {} | ||
#[doc = "`write(|w| ..)` method takes [`int_ena::W`](W) writer structure"] | ||
impl crate::Writable for INT_ENA_SPEC { | ||
type Safety = crate::Unsafe; | ||
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; | ||
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; | ||
} | ||
#[doc = "`reset()` method sets INT_ENA to value 0"] | ||
impl crate::Resettable for INT_ENA_SPEC { | ||
const RESET_VALUE: u32 = 0; | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters