atsamd51p/i2s/
rxdata.rs
#[doc = "Register `RXDATA` reader"]
pub type R = crate::R<RxdataSpec>;
#[doc = "Field `DATA` reader - Sample Data"]
pub type DataR = crate::FieldReader<u32>;
impl R {
#[doc = "Bits 0:31 - Sample Data"]
#[inline(always)]
pub fn data(&self) -> DataR {
DataR::new(self.bits)
}
}
#[doc = "Rx Data\n\nYou can [`read`](crate::Reg::read) this register and get [`rxdata::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct RxdataSpec;
impl crate::RegisterSpec for RxdataSpec {
type Ux = u32;
}
#[doc = "`read()` method returns [`rxdata::R`](R) reader structure"]
impl crate::Readable for RxdataSpec {}
#[doc = "`reset()` method sets RXDATA to value 0"]
impl crate::Resettable for RxdataSpec {
const RESET_VALUE: u32 = 0;
}