summaryrefslogtreecommitdiff
path: root/src/system_control/aircr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/system_control/aircr.rs')
-rw-r--r--src/system_control/aircr.rs334
1 files changed, 334 insertions, 0 deletions
diff --git a/src/system_control/aircr.rs b/src/system_control/aircr.rs
new file mode 100644
index 0000000..e6e6820
--- /dev/null
+++ b/src/system_control/aircr.rs
@@ -0,0 +1,334 @@
+#[doc = "Register `AIRCR` reader"]
+pub struct R(crate::R<AIRCR_SPEC>);
+impl core::ops::Deref for R {
+ type Target = crate::R<AIRCR_SPEC>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+impl From<crate::R<AIRCR_SPEC>> for R {
+ #[inline(always)]
+ fn from(reader: crate::R<AIRCR_SPEC>) -> Self {
+ R(reader)
+ }
+}
+#[doc = "Register `AIRCR` writer"]
+pub struct W(crate::W<AIRCR_SPEC>);
+impl core::ops::Deref for W {
+ type Target = crate::W<AIRCR_SPEC>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+impl core::ops::DerefMut for W {
+ #[inline(always)]
+ fn deref_mut(&mut self) -> &mut Self::Target {
+ &mut self.0
+ }
+}
+impl From<crate::W<AIRCR_SPEC>> for W {
+ #[inline(always)]
+ fn from(writer: crate::W<AIRCR_SPEC>) -> Self {
+ W(writer)
+ }
+}
+#[doc = "Field `VECTCLRACTIVE` reader - Debug: Clear state information"]
+pub struct VECTCLRACTIVE_R(crate::FieldReader<bool, bool>);
+impl VECTCLRACTIVE_R {
+ pub(crate) fn new(bits: bool) -> Self {
+ VECTCLRACTIVE_R(crate::FieldReader::new(bits))
+ }
+}
+impl core::ops::Deref for VECTCLRACTIVE_R {
+ type Target = crate::FieldReader<bool, bool>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+#[doc = "Field `VECTCLRACTIVE` writer - Debug: Clear state information"]
+pub struct VECTCLRACTIVE_W<'a> {
+ w: &'a mut W,
+}
+impl<'a> VECTCLRACTIVE_W<'a> {
+ #[doc = r"Sets the field bit"]
+ #[inline(always)]
+ pub fn set_bit(self) -> &'a mut W {
+ self.bit(true)
+ }
+ #[doc = r"Clears the field bit"]
+ #[inline(always)]
+ pub fn clear_bit(self) -> &'a mut W {
+ self.bit(false)
+ }
+ #[doc = r"Writes raw bits to the field"]
+ #[inline(always)]
+ pub fn bit(self, value: bool) -> &'a mut W {
+ self.w.bits = (self.w.bits & !(0x01 << 1)) | ((value as u32 & 0x01) << 1);
+ self.w
+ }
+}
+#[doc = "System Reset Request\n\nValue on reset: 0"]
+#[derive(Clone, Copy, Debug, PartialEq)]
+pub enum SYSRESETREQ_A {
+ #[doc = "0: No system reset request"]
+ VALUE_0 = 0,
+ #[doc = "1: Asserts a signal to the outer system that requests a reset"]
+ VALUE_1 = 1,
+}
+impl From<SYSRESETREQ_A> for bool {
+ #[inline(always)]
+ fn from(variant: SYSRESETREQ_A) -> Self {
+ variant as u8 != 0
+ }
+}
+#[doc = "Field `SYSRESETREQ` reader - System Reset Request"]
+pub struct SYSRESETREQ_R(crate::FieldReader<bool, SYSRESETREQ_A>);
+impl SYSRESETREQ_R {
+ pub(crate) fn new(bits: bool) -> Self {
+ SYSRESETREQ_R(crate::FieldReader::new(bits))
+ }
+ #[doc = r"Get enumerated values variant"]
+ #[inline(always)]
+ pub fn variant(&self) -> SYSRESETREQ_A {
+ match self.bits {
+ false => SYSRESETREQ_A::VALUE_0,
+ true => SYSRESETREQ_A::VALUE_1,
+ }
+ }
+ #[doc = "Checks if the value of the field is `VALUE_0`"]
+ #[inline(always)]
+ pub fn is_value_0(&self) -> bool {
+ **self == SYSRESETREQ_A::VALUE_0
+ }
+ #[doc = "Checks if the value of the field is `VALUE_1`"]
+ #[inline(always)]
+ pub fn is_value_1(&self) -> bool {
+ **self == SYSRESETREQ_A::VALUE_1
+ }
+}
+impl core::ops::Deref for SYSRESETREQ_R {
+ type Target = crate::FieldReader<bool, SYSRESETREQ_A>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+#[doc = "Field `SYSRESETREQ` writer - System Reset Request"]
+pub struct SYSRESETREQ_W<'a> {
+ w: &'a mut W,
+}
+impl<'a> SYSRESETREQ_W<'a> {
+ #[doc = r"Writes `variant` to the field"]
+ #[inline(always)]
+ pub fn variant(self, variant: SYSRESETREQ_A) -> &'a mut W {
+ self.bit(variant.into())
+ }
+ #[doc = "No system reset request"]
+ #[inline(always)]
+ pub fn value_0(self) -> &'a mut W {
+ self.variant(SYSRESETREQ_A::VALUE_0)
+ }
+ #[doc = "Asserts a signal to the outer system that requests a reset"]
+ #[inline(always)]
+ pub fn value_1(self) -> &'a mut W {
+ self.variant(SYSRESETREQ_A::VALUE_1)
+ }
+ #[doc = r"Sets the field bit"]
+ #[inline(always)]
+ pub fn set_bit(self) -> &'a mut W {
+ self.bit(true)
+ }
+ #[doc = r"Clears the field bit"]
+ #[inline(always)]
+ pub fn clear_bit(self) -> &'a mut W {
+ self.bit(false)
+ }
+ #[doc = r"Writes raw bits to the field"]
+ #[inline(always)]
+ pub fn bit(self, value: bool) -> &'a mut W {
+ self.w.bits = (self.w.bits & !(0x01 << 2)) | ((value as u32 & 0x01) << 2);
+ self.w
+ }
+}
+#[doc = "Data Endianness, 0=little, 1=big\n\nValue on reset: 0"]
+#[derive(Clone, Copy, Debug, PartialEq)]
+pub enum ENDIANNESS_A {
+ #[doc = "0: Little-endian"]
+ VALUE_0 = 0,
+ #[doc = "1: Big-endian"]
+ VALUE_1 = 1,
+}
+impl From<ENDIANNESS_A> for bool {
+ #[inline(always)]
+ fn from(variant: ENDIANNESS_A) -> Self {
+ variant as u8 != 0
+ }
+}
+#[doc = "Field `ENDIANNESS` reader - Data Endianness, 0=little, 1=big"]
+pub struct ENDIANNESS_R(crate::FieldReader<bool, ENDIANNESS_A>);
+impl ENDIANNESS_R {
+ pub(crate) fn new(bits: bool) -> Self {
+ ENDIANNESS_R(crate::FieldReader::new(bits))
+ }
+ #[doc = r"Get enumerated values variant"]
+ #[inline(always)]
+ pub fn variant(&self) -> ENDIANNESS_A {
+ match self.bits {
+ false => ENDIANNESS_A::VALUE_0,
+ true => ENDIANNESS_A::VALUE_1,
+ }
+ }
+ #[doc = "Checks if the value of the field is `VALUE_0`"]
+ #[inline(always)]
+ pub fn is_value_0(&self) -> bool {
+ **self == ENDIANNESS_A::VALUE_0
+ }
+ #[doc = "Checks if the value of the field is `VALUE_1`"]
+ #[inline(always)]
+ pub fn is_value_1(&self) -> bool {
+ **self == ENDIANNESS_A::VALUE_1
+ }
+}
+impl core::ops::Deref for ENDIANNESS_R {
+ type Target = crate::FieldReader<bool, ENDIANNESS_A>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+#[doc = "Field `ENDIANNESS` writer - Data Endianness, 0=little, 1=big"]
+pub struct ENDIANNESS_W<'a> {
+ w: &'a mut W,
+}
+impl<'a> ENDIANNESS_W<'a> {
+ #[doc = r"Writes `variant` to the field"]
+ #[inline(always)]
+ pub fn variant(self, variant: ENDIANNESS_A) -> &'a mut W {
+ self.bit(variant.into())
+ }
+ #[doc = "Little-endian"]
+ #[inline(always)]
+ pub fn value_0(self) -> &'a mut W {
+ self.variant(ENDIANNESS_A::VALUE_0)
+ }
+ #[doc = "Big-endian"]
+ #[inline(always)]
+ pub fn value_1(self) -> &'a mut W {
+ self.variant(ENDIANNESS_A::VALUE_1)
+ }
+ #[doc = r"Sets the field bit"]
+ #[inline(always)]
+ pub fn set_bit(self) -> &'a mut W {
+ self.bit(true)
+ }
+ #[doc = r"Clears the field bit"]
+ #[inline(always)]
+ pub fn clear_bit(self) -> &'a mut W {
+ self.bit(false)
+ }
+ #[doc = r"Writes raw bits to the field"]
+ #[inline(always)]
+ pub fn bit(self, value: bool) -> &'a mut W {
+ self.w.bits = (self.w.bits & !(0x01 << 15)) | ((value as u32 & 0x01) << 15);
+ self.w
+ }
+}
+#[doc = "Field `VECTKEY` reader - Register key (0x05FA)"]
+pub struct VECTKEY_R(crate::FieldReader<u16, u16>);
+impl VECTKEY_R {
+ pub(crate) fn new(bits: u16) -> Self {
+ VECTKEY_R(crate::FieldReader::new(bits))
+ }
+}
+impl core::ops::Deref for VECTKEY_R {
+ type Target = crate::FieldReader<u16, u16>;
+ #[inline(always)]
+ fn deref(&self) -> &Self::Target {
+ &self.0
+ }
+}
+#[doc = "Field `VECTKEY` writer - Register key (0x05FA)"]
+pub struct VECTKEY_W<'a> {
+ w: &'a mut W,
+}
+impl<'a> VECTKEY_W<'a> {
+ #[doc = r"Writes raw bits to the field"]
+ #[inline(always)]
+ pub unsafe fn bits(self, value: u16) -> &'a mut W {
+ self.w.bits = (self.w.bits & !(0xffff << 16)) | ((value as u32 & 0xffff) << 16);
+ self.w
+ }
+}
+impl R {
+ #[doc = "Bit 1 - Debug: Clear state information"]
+ #[inline(always)]
+ pub fn vectclractive(&self) -> VECTCLRACTIVE_R {
+ VECTCLRACTIVE_R::new(((self.bits >> 1) & 0x01) != 0)
+ }
+ #[doc = "Bit 2 - System Reset Request"]
+ #[inline(always)]
+ pub fn sysresetreq(&self) -> SYSRESETREQ_R {
+ SYSRESETREQ_R::new(((self.bits >> 2) & 0x01) != 0)
+ }
+ #[doc = "Bit 15 - Data Endianness, 0=little, 1=big"]
+ #[inline(always)]
+ pub fn endianness(&self) -> ENDIANNESS_R {
+ ENDIANNESS_R::new(((self.bits >> 15) & 0x01) != 0)
+ }
+ #[doc = "Bits 16:31 - Register key (0x05FA)"]
+ #[inline(always)]
+ pub fn vectkey(&self) -> VECTKEY_R {
+ VECTKEY_R::new(((self.bits >> 16) & 0xffff) as u16)
+ }
+}
+impl W {
+ #[doc = "Bit 1 - Debug: Clear state information"]
+ #[inline(always)]
+ pub fn vectclractive(&mut self) -> VECTCLRACTIVE_W {
+ VECTCLRACTIVE_W { w: self }
+ }
+ #[doc = "Bit 2 - System Reset Request"]
+ #[inline(always)]
+ pub fn sysresetreq(&mut self) -> SYSRESETREQ_W {
+ SYSRESETREQ_W { w: self }
+ }
+ #[doc = "Bit 15 - Data Endianness, 0=little, 1=big"]
+ #[inline(always)]
+ pub fn endianness(&mut self) -> ENDIANNESS_W {
+ ENDIANNESS_W { w: self }
+ }
+ #[doc = "Bits 16:31 - Register key (0x05FA)"]
+ #[inline(always)]
+ pub fn vectkey(&mut self) -> VECTKEY_W {
+ VECTKEY_W { w: self }
+ }
+ #[doc = "Writes raw bits to the register."]
+ #[inline(always)]
+ pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
+ self.0.bits(bits);
+ self
+ }
+}
+#[doc = "Application Interrupt and Reset Control Register\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [aircr](index.html) module"]
+pub struct AIRCR_SPEC;
+impl crate::RegisterSpec for AIRCR_SPEC {
+ type Ux = u32;
+}
+#[doc = "`read()` method returns [aircr::R](R) reader structure"]
+impl crate::Readable for AIRCR_SPEC {
+ type Reader = R;
+}
+#[doc = "`write(|w| ..)` method takes [aircr::W](W) writer structure"]
+impl crate::Writable for AIRCR_SPEC {
+ type Writer = W;
+}
+#[doc = "`reset()` method sets AIRCR to value 0"]
+impl crate::Resettable for AIRCR_SPEC {
+ #[inline(always)]
+ fn reset_value() -> Self::Ux {
+ 0
+ }
+}