#[doc = "Register `smhc_idmac` reader"]
pub struct R(crate::R<SMHC_IDMAC_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<SMHC_IDMAC_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<SMHC_IDMAC_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<SMHC_IDMAC_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `smhc_idmac` writer"]
pub struct W(crate::W<SMHC_IDMAC_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<SMHC_IDMAC_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::ops::DerefMut for W {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl From<crate::W<SMHC_IDMAC_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<SMHC_IDMAC_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `idmac_rst` reader - DMA Reset"]
pub type IDMAC_RST_R = crate::BitReader<bool>;
#[doc = "Field `idmac_rst` writer - DMA Reset"]
pub type IDMAC_RST_W<'a, const O: u8> = crate::BitWriter<'a, u32, SMHC_IDMAC_SPEC, bool, O>;
#[doc = "Field `fix_bust_ctrl` reader - Fixed Burst"]
pub type FIX_BUST_CTRL_R = crate::BitReader<bool>;
#[doc = "Field `fix_bust_ctrl` writer - Fixed Burst"]
pub type FIX_BUST_CTRL_W<'a, const O: u8> = crate::BitWriter<'a, u32, SMHC_IDMAC_SPEC, bool, O>;
#[doc = "Field `idmac_enb` reader - IDMAC Enable"]
pub type IDMAC_ENB_R = crate::BitReader<bool>;
#[doc = "Field `idmac_enb` writer - IDMAC Enable"]
pub type IDMAC_ENB_W<'a, const O: u8> = crate::BitWriter<'a, u32, SMHC_IDMAC_SPEC, bool, O>;
#[doc = "Field `des_load_ctrl` writer - "]
pub type DES_LOAD_CTRL_W<'a, const O: u8> = crate::BitWriter<'a, u32, SMHC_IDMAC_SPEC, bool, O>;
impl R {
#[doc = "Bit 0 - DMA Reset"]
#[inline(always)]
pub fn idmac_rst(&self) -> IDMAC_RST_R {
IDMAC_RST_R::new((self.bits & 1) != 0)
}
#[doc = "Bit 1 - Fixed Burst"]
#[inline(always)]
pub fn fix_bust_ctrl(&self) -> FIX_BUST_CTRL_R {
FIX_BUST_CTRL_R::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bit 7 - IDMAC Enable"]
#[inline(always)]
pub fn idmac_enb(&self) -> IDMAC_ENB_R {
IDMAC_ENB_R::new(((self.bits >> 7) & 1) != 0)
}
}
impl W {
#[doc = "Bit 0 - DMA Reset"]
#[inline(always)]
#[must_use]
pub fn idmac_rst(&mut self) -> IDMAC_RST_W<0> {
IDMAC_RST_W::new(self)
}
#[doc = "Bit 1 - Fixed Burst"]
#[inline(always)]
#[must_use]
pub fn fix_bust_ctrl(&mut self) -> FIX_BUST_CTRL_W<1> {
FIX_BUST_CTRL_W::new(self)
}
#[doc = "Bit 7 - IDMAC Enable"]
#[inline(always)]
#[must_use]
pub fn idmac_enb(&mut self) -> IDMAC_ENB_W<7> {
IDMAC_ENB_W::new(self)
}
#[doc = "Bit 31"]
#[inline(always)]
#[must_use]
pub fn des_load_ctrl(&mut self) -> DES_LOAD_CTRL_W<31> {
DES_LOAD_CTRL_W::new(self)
}
#[doc = "Writes raw bits to the register."]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "IDMAC Control Register\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [smhc_idmac](index.html) module"]
pub struct SMHC_IDMAC_SPEC;
impl crate::RegisterSpec for SMHC_IDMAC_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [smhc_idmac::R](R) reader structure"]
impl crate::Readable for SMHC_IDMAC_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [smhc_idmac::W](W) writer structure"]
impl crate::Writable for SMHC_IDMAC_SPEC {
type Writer = W;
const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets smhc_idmac to value 0"]
impl crate::Resettable for SMHC_IDMAC_SPEC {
const RESET_VALUE: Self::Ux = 0;
}