stm32f103-pac 0.1.3

Peripheral Access Crate (PAC) for STM32F103
Documentation
#[doc = "Register `DMATDLAR` reader"]
pub type R = crate::R<DmatdlarSpec>;
#[doc = "Register `DMATDLAR` writer"]
pub type W = crate::W<DmatdlarSpec>;
#[doc = "Field `STL` reader - Start of transmit list"]
pub type StlR = crate::FieldReader<u32>;
#[doc = "Field `STL` writer - Start of transmit list"]
pub type StlW<'a, REG> = crate::FieldWriter<'a, REG, 32, u32>;
impl R {
    #[doc = "Bits 0:31 - Start of transmit list"]
    #[inline(always)]
    pub fn stl(&self) -> StlR {
        StlR::new(self.bits)
    }
}
impl W {
    #[doc = "Bits 0:31 - Start of transmit list"]
    #[inline(always)]
    pub fn stl(&mut self) -> StlW<'_, DmatdlarSpec> {
        StlW::new(self, 0)
    }
}
#[doc = "Ethernet DMA transmit descriptor list address register\n\nYou can [`read`](crate::Reg::read) this register and get [`dmatdlar::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dmatdlar::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct DmatdlarSpec;
impl crate::RegisterSpec for DmatdlarSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`dmatdlar::R`](R) reader structure"]
impl crate::Readable for DmatdlarSpec {}
#[doc = "`write(|w| ..)` method takes [`dmatdlar::W`](W) writer structure"]
impl crate::Writable for DmatdlarSpec {
    type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets DMATDLAR to value 0"]
impl crate::Resettable for DmatdlarSpec {}