d1_pac/audio_codec/
ac_dac_txdata.rs

1#[doc = "Register `ac_dac_txdata` writer"]
2pub type W = crate::W<AC_DAC_TXDATA_SPEC>;
3#[doc = "Field `tx_data` writer - Write the transmitting left and right channel sample data to this register one by one. Write the left channel sample data first and then the right channel sample."]
4pub type TX_DATA_W<'a, REG> = crate::FieldWriter<'a, REG, 32, u32>;
5impl W {
6    #[doc = "Bits 0:31 - Write the transmitting left and right channel sample data to this register one by one. Write the left channel sample data first and then the right channel sample."]
7    #[inline(always)]
8    #[must_use]
9    pub fn tx_data(&mut self) -> TX_DATA_W<AC_DAC_TXDATA_SPEC> {
10        TX_DATA_W::new(self, 0)
11    }
12    #[doc = r" Writes raw bits to the register."]
13    #[doc = r""]
14    #[doc = r" # Safety"]
15    #[doc = r""]
16    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
17    #[inline(always)]
18    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
19        self.bits = bits;
20        self
21    }
22}
23#[doc = "DAC TX DATA Register\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ac_dac_txdata::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
24pub struct AC_DAC_TXDATA_SPEC;
25impl crate::RegisterSpec for AC_DAC_TXDATA_SPEC {
26    type Ux = u32;
27}
28#[doc = "`write(|w| ..)` method takes [`ac_dac_txdata::W`](W) writer structure"]
29impl crate::Writable for AC_DAC_TXDATA_SPEC {
30    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
31    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
32}
33#[doc = "`reset()` method sets ac_dac_txdata to value 0"]
34impl crate::Resettable for AC_DAC_TXDATA_SPEC {
35    const RESET_VALUE: Self::Ux = 0;
36}