pub type R = crate::R<I2SPRrs>;
pub type W = crate::W<I2SPRrs>;
pub type I2SDIV_R = crate::FieldReader;
pub type I2SDIV_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
pub type ODD_R = crate::BitReader;
pub type ODD_W<'a, REG> = crate::BitWriter<'a, REG>;
pub type MCKOE_R = crate::BitReader;
pub type MCKOE_W<'a, REG> = crate::BitWriter<'a, REG>;
impl R {
#[inline(always)]
pub fn i2sdiv(&self) -> I2SDIV_R {
I2SDIV_R::new((self.bits & 0xff) as u8)
}
#[inline(always)]
pub fn odd(&self) -> ODD_R {
ODD_R::new(((self.bits >> 8) & 1) != 0)
}
#[inline(always)]
pub fn mckoe(&self) -> MCKOE_R {
MCKOE_R::new(((self.bits >> 9) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("I2SPR")
.field("mckoe", &self.mckoe())
.field("odd", &self.odd())
.field("i2sdiv", &self.i2sdiv())
.finish()
}
}
impl W {
#[inline(always)]
pub fn i2sdiv(&mut self) -> I2SDIV_W<I2SPRrs> {
I2SDIV_W::new(self, 0)
}
#[inline(always)]
pub fn odd(&mut self) -> ODD_W<I2SPRrs> {
ODD_W::new(self, 8)
}
#[inline(always)]
pub fn mckoe(&mut self) -> MCKOE_W<I2SPRrs> {
MCKOE_W::new(self, 9)
}
}
pub struct I2SPRrs;
impl crate::RegisterSpec for I2SPRrs {
type Ux = u16;
}
impl crate::Readable for I2SPRrs {}
impl crate::Writable for I2SPRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for I2SPRrs {
const RESET_VALUE: u16 = 0x10;
}