#[doc = "Register `FIFO_DATA` reader"] pub type R = crate::R; #[doc = "Register `FIFO_DATA` writer"] pub type W = crate::W; #[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 { 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; }