rp2040_pac/pio0/
txf.rs

1#[doc = "Register `TXF%s` writer"]
2pub type W = crate::W<TXF_SPEC>;
3impl core::fmt::Debug for crate::generic::Reg<TXF_SPEC> {
4    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
5        write!(f, "(not readable)")
6    }
7}
8impl W {
9    #[doc = r" Writes raw bits to the register."]
10    #[doc = r""]
11    #[doc = r" # Safety"]
12    #[doc = r""]
13    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
14    #[inline(always)]
15    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
16        self.bits = bits;
17        self
18    }
19}
20#[doc = "Direct write access to the TX FIFO for this state machine. Each write pushes one word to the FIFO. Attempting to write to a full FIFO has no effect on the FIFO state or contents, and sets the sticky FDEBUG_TXOVER error flag for this FIFO.  
21
22You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`txf::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
23pub struct TXF_SPEC;
24impl crate::RegisterSpec for TXF_SPEC {
25    type Ux = u32;
26}
27#[doc = "`write(|w| ..)` method takes [`txf::W`](W) writer structure"]
28impl crate::Writable for TXF_SPEC {
29    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
30    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
31}
32#[doc = "`reset()` method sets TXF%s to value 0"]
33impl crate::Resettable for TXF_SPEC {
34    const RESET_VALUE: u32 = 0;
35}