Init Commit
All checks were successful
Rust/va416xx-rs/pipeline/head This commit looks good

Monorepo for Rust support of VA416XX family of radiation hardened MCUs
This commit is contained in:
2021-12-07 00:31:51 +01:00
committed by Robin Mueller
commit 5d1740efea
606 changed files with 74678 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#[doc = "Register `IRQ_OUT5` reader"]
pub type R = crate::R<IrqOut5Spec>;
#[doc = "Field `IRQ_OUT5` reader - IRQ_OUT\\[179:160\\]"]
pub type IrqOut5R = crate::FieldReader<u32>;
impl R {
#[doc = "Bits 0:19 - IRQ_OUT\\[179:160\\]"]
#[inline(always)]
pub fn irq_out5(&self) -> IrqOut5R {
IrqOut5R::new(self.bits & 0x000f_ffff)
}
}
#[doc = "DEBUG IRQ_OUT\\[179:160\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`irq_out5::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct IrqOut5Spec;
impl crate::RegisterSpec for IrqOut5Spec {
type Ux = u32;
}
#[doc = "`read()` method returns [`irq_out5::R`](R) reader structure"]
impl crate::Readable for IrqOut5Spec {}
#[doc = "`reset()` method sets IRQ_OUT5 to value 0"]
impl crate::Resettable for IrqOut5Spec {
const RESET_VALUE: u32 = 0;
}