va416xx-rs/va416xx/src/spw/defaddr.rs
Robin Mueller 5d1740efea
All checks were successful
Rust/va416xx-rs/pipeline/head This commit looks good
Init Commit
Monorepo for Rust support of VA416XX family of radiation hardened MCUs
2024-06-25 20:01:21 +02:00

56 lines
2.7 KiB
Rust

#[doc = "Register `DEFADDR` reader"]
pub type R = crate::R<DefaddrSpec>;
#[doc = "Register `DEFADDR` writer"]
pub type W = crate::W<DefaddrSpec>;
#[doc = "Field `DEFADDR` reader - 8-bit node address used for node identification on the SpaceWire network"]
pub type DefaddrR = crate::FieldReader;
#[doc = "Field `DEFADDR` writer - 8-bit node address used for node identification on the SpaceWire network"]
pub type DefaddrW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `DEFMASK` reader - 8-bit default mask used for node identification on the SpaceWire network"]
pub type DefmaskR = crate::FieldReader;
#[doc = "Field `DEFMASK` writer - 8-bit default mask used for node identification on the SpaceWire network"]
pub type DefmaskW<'a, REG> = crate::FieldWriter<'a, REG, 8>;
impl R {
#[doc = "Bits 0:7 - 8-bit node address used for node identification on the SpaceWire network"]
#[inline(always)]
pub fn defaddr(&self) -> DefaddrR {
DefaddrR::new((self.bits & 0xff) as u8)
}
#[doc = "Bits 8:15 - 8-bit default mask used for node identification on the SpaceWire network"]
#[inline(always)]
pub fn defmask(&self) -> DefmaskR {
DefmaskR::new(((self.bits >> 8) & 0xff) as u8)
}
}
impl W {
#[doc = "Bits 0:7 - 8-bit node address used for node identification on the SpaceWire network"]
#[inline(always)]
#[must_use]
pub fn defaddr(&mut self) -> DefaddrW<DefaddrSpec> {
DefaddrW::new(self, 0)
}
#[doc = "Bits 8:15 - 8-bit default mask used for node identification on the SpaceWire network"]
#[inline(always)]
#[must_use]
pub fn defmask(&mut self) -> DefmaskW<DefaddrSpec> {
DefmaskW::new(self, 8)
}
}
#[doc = "Node Address Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`defaddr::R`](R). You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`defaddr::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct DefaddrSpec;
impl crate::RegisterSpec for DefaddrSpec {
type Ux = u32;
}
#[doc = "`read()` method returns [`defaddr::R`](R) reader structure"]
impl crate::Readable for DefaddrSpec {}
#[doc = "`write(|w| ..)` method takes [`defaddr::W`](W) writer structure"]
impl crate::Writable for DefaddrSpec {
type Safety = crate::Unsafe;
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets DEFADDR to value 0xfe"]
impl crate::Resettable for DefaddrSpec {
const RESET_VALUE: u32 = 0xfe;
}