Monorepo for Rust support of VA416XX family of radiation hardened MCUs
This commit is contained in:
31
va416xx/src/dac0/fifo_data.rs
Normal file
31
va416xx/src/dac0/fifo_data.rs
Normal file
@ -0,0 +1,31 @@
|
||||
#[doc = "Register `FIFO_DATA` reader"]
|
||||
pub type R = crate::R<FifoDataSpec>;
|
||||
#[doc = "Register `FIFO_DATA` writer"]
|
||||
pub type W = crate::W<FifoDataSpec>;
|
||||
#[doc = "Field `DATA` writer - Data for FIFO write"]
|
||||
pub type DataW<'a, REG> = crate::FieldWriter<'a, REG, 12, u16>;
|
||||
impl W {
|
||||
#[doc = "Bits 0:11 - Data for FIFO write"]
|
||||
#[inline(always)]
|
||||
#[must_use]
|
||||
pub fn data(&mut self) -> DataW<FifoDataSpec> {
|
||||
DataW::new(self, 0)
|
||||
}
|
||||
}
|
||||
#[doc = "FIFO data\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fifo_data::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 [`fifo_data::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
|
||||
pub struct FifoDataSpec;
|
||||
impl crate::RegisterSpec for FifoDataSpec {
|
||||
type Ux = u32;
|
||||
}
|
||||
#[doc = "`read()` method returns [`fifo_data::R`](R) reader structure"]
|
||||
impl crate::Readable for FifoDataSpec {}
|
||||
#[doc = "`write(|w| ..)` method takes [`fifo_data::W`](W) writer structure"]
|
||||
impl crate::Writable for FifoDataSpec {
|
||||
type Safety = crate::Unsafe;
|
||||
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
|
||||
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
|
||||
}
|
||||
#[doc = "`reset()` method sets FIFO_DATA to value 0"]
|
||||
impl crate::Resettable for FifoDataSpec {
|
||||
const RESET_VALUE: u32 = 0;
|
||||
}
|
Reference in New Issue
Block a user