You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

192 lines
5.9 KiB

#[doc = "Register `AMR` reader"]
pub struct R(crate::R<AMR_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<AMR_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::convert::From<crate::R<AMR_SPEC>> for R {
fn from(reader: crate::R<AMR_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `AMR` writer"]
pub struct W(crate::W<AMR_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<AMR_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 core::convert::From<crate::W<AMR_SPEC>> for W {
fn from(writer: crate::W<AMR_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `RTR` reader - No description available"]
pub struct RTR_R(crate::FieldReader<bool, bool>);
impl RTR_R {
pub(crate) fn new(bits: bool) -> Self {
RTR_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for RTR_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `RTR` writer - No description available"]
pub struct RTR_W<'a> {
w: &'a mut W,
}
impl<'a> RTR_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 = "Field `IDE` reader - No description available"]
pub struct IDE_R(crate::FieldReader<bool, bool>);
impl IDE_R {
pub(crate) fn new(bits: bool) -> Self {
IDE_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for IDE_R {
type Target = crate::FieldReader<bool, bool>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `IDE` writer - No description available"]
pub struct IDE_W<'a> {
w: &'a mut W,
}
impl<'a> IDE_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 << 2)) | ((value as u32 & 0x01) << 2);
self.w
}
}
#[doc = "Field `ID` reader - Identifier?it cannot be used to match both 11bit and 29bit identifiers,?in case of 11bit identifiers, lower 18bits should be all ones (don?t care)"]
pub struct ID_R(crate::FieldReader<u32, u32>);
impl ID_R {
pub(crate) fn new(bits: u32) -> Self {
ID_R(crate::FieldReader::new(bits))
}
}
impl core::ops::Deref for ID_R {
type Target = crate::FieldReader<u32, u32>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
#[doc = "Field `ID` writer - Identifier?it cannot be used to match both 11bit and 29bit identifiers,?in case of 11bit identifiers, lower 18bits should be all ones (don?t care)"]
pub struct ID_W<'a> {
w: &'a mut W,
}
impl<'a> ID_W<'a> {
#[doc = r"Writes raw bits to the field"]
#[inline(always)]
pub unsafe fn bits(self, value: u32) -> &'a mut W {
self.w.bits = (self.w.bits & !(0x1fff_ffff << 3)) | ((value as u32 & 0x1fff_ffff) << 3);
self.w
}
}
impl R {
#[doc = "Bit 1 - No description available"]
#[inline(always)]
pub fn rtr(&self) -> RTR_R {
RTR_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 2 - No description available"]
#[inline(always)]
pub fn ide(&self) -> IDE_R {
IDE_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bits 3:31 - Identifier?it cannot be used to match both 11bit and 29bit identifiers,?in case of 11bit identifiers, lower 18bits should be all ones (don?t care)"]
#[inline(always)]
pub fn id(&self) -> ID_R {
ID_R::new(((self.bits >> 3) & 0x1fff_ffff) as u32)
}
}
impl W {
#[doc = "Bit 1 - No description available"]
#[inline(always)]
pub fn rtr(&mut self) -> RTR_W {
RTR_W { w: self }
}
#[doc = "Bit 2 - No description available"]
#[inline(always)]
pub fn ide(&mut self) -> IDE_W {
IDE_W { w: self }
}
#[doc = "Bits 3:31 - Identifier?it cannot be used to match both 11bit and 29bit identifiers,?in case of 11bit identifiers, lower 18bits should be all ones (don?t care)"]
#[inline(always)]
pub fn id(&mut self) -> ID_W {
ID_W { w: self }
}
#[doc = "Writes raw bits to the register."]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "Acceptance Mask 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 [amr](index.html) module"]
pub struct AMR_SPEC;
impl crate::RegisterSpec for AMR_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [amr::R](R) reader structure"]
impl crate::Readable for AMR_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [amr::W](W) writer structure"]
impl crate::Writable for AMR_SPEC {
type Writer = W;
}
#[doc = "`reset()` method sets AMR to value 0"]
impl crate::Resettable for AMR_SPEC {
#[inline(always)]
fn reset_value() -> Self::Ux {
0
}
}