Regenerate crate with svd2rust v0.14.0

This commit is contained in:
Tmplt
2019-01-16 15:39:25 +01:00
parent e96ee18df6
commit e0ddb38a51
2821 changed files with 598414 additions and 601164 deletions

185
src/lpi2c0/mtdr.rs Normal file
View File

@ -0,0 +1,185 @@
#[doc = r" Value read from the register"]
pub struct R {
bits: u32,
}
#[doc = r" Value to write to the register"]
pub struct W {
bits: u32,
}
impl super::MTDR {
#[doc = r" Modifies the contents of the register"]
#[inline]
pub fn modify<F>(&self, f: F)
where
for<'w> F: FnOnce(&R, &'w mut W) -> &'w mut W,
{
let bits = self.register.get();
let r = R { bits: bits };
let mut w = W { bits: bits };
f(&r, &mut w);
self.register.set(w.bits);
}
#[doc = r" Reads the contents of the register"]
#[inline]
pub fn read(&self) -> R {
R { bits: self.register.get() }
}
#[doc = r" Writes to the register"]
#[inline]
pub fn write<F>(&self, f: F)
where
F: FnOnce(&mut W) -> &mut W,
{
let mut w = W::reset_value();
f(&mut w);
self.register.set(w.bits);
}
#[doc = r" Writes the reset value to the register"]
#[inline]
pub fn reset(&self) {
self.write(|w| w)
}
}
#[doc = r" Proxy"]
pub struct _DATAW<'a> {
w: &'a mut W,
}
impl<'a> _DATAW<'a> {
#[doc = r" Writes raw bits to the field"]
#[inline]
pub unsafe fn bits(self, value: u8) -> &'a mut W {
const MASK: u8 = 255;
const OFFSET: u8 = 0;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
#[doc = "Values that can be written to the field `CMD`"]
pub enum CMDW {
#[doc = "Transmit DATA\\[7:0\\]."]
_000,
#[doc = "Receive (DATA\\[7:0\\] + 1) bytes."]
_001,
#[doc = "Generate STOP condition."]
_010,
#[doc = "Receive and discard (DATA\\[7:0\\] + 1) bytes."]
_011,
#[doc = "Generate (repeated) START and transmit address in DATA\\[7:0\\]."]
_100,
#[doc = "Generate (repeated) START and transmit address in DATA\\[7:0\\]. This transfer expects a NACK to be returned."]
_101,
#[doc = "Generate (repeated) START and transmit address in DATA\\[7:0\\] using high speed mode."]
_110,
#[doc = "Generate (repeated) START and transmit address in DATA\\[7:0\\] using high speed mode. This transfer expects a NACK to be returned."]
_111,
}
impl CMDW {
#[allow(missing_docs)]
#[doc(hidden)]
#[inline]
pub fn _bits(&self) -> u8 {
match *self {
CMDW::_000 => 0,
CMDW::_001 => 1,
CMDW::_010 => 2,
CMDW::_011 => 3,
CMDW::_100 => 4,
CMDW::_101 => 5,
CMDW::_110 => 6,
CMDW::_111 => 7,
}
}
}
#[doc = r" Proxy"]
pub struct _CMDW<'a> {
w: &'a mut W,
}
impl<'a> _CMDW<'a> {
#[doc = r" Writes `variant` to the field"]
#[inline]
pub fn variant(self, variant: CMDW) -> &'a mut W {
{
self.bits(variant._bits())
}
}
#[doc = "Transmit DATA\\[7:0\\]."]
#[inline]
pub fn _000(self) -> &'a mut W {
self.variant(CMDW::_000)
}
#[doc = "Receive (DATA\\[7:0\\] + 1) bytes."]
#[inline]
pub fn _001(self) -> &'a mut W {
self.variant(CMDW::_001)
}
#[doc = "Generate STOP condition."]
#[inline]
pub fn _010(self) -> &'a mut W {
self.variant(CMDW::_010)
}
#[doc = "Receive and discard (DATA\\[7:0\\] + 1) bytes."]
#[inline]
pub fn _011(self) -> &'a mut W {
self.variant(CMDW::_011)
}
#[doc = "Generate (repeated) START and transmit address in DATA\\[7:0\\]."]
#[inline]
pub fn _100(self) -> &'a mut W {
self.variant(CMDW::_100)
}
#[doc = "Generate (repeated) START and transmit address in DATA\\[7:0\\]. This transfer expects a NACK to be returned."]
#[inline]
pub fn _101(self) -> &'a mut W {
self.variant(CMDW::_101)
}
#[doc = "Generate (repeated) START and transmit address in DATA\\[7:0\\] using high speed mode."]
#[inline]
pub fn _110(self) -> &'a mut W {
self.variant(CMDW::_110)
}
#[doc = "Generate (repeated) START and transmit address in DATA\\[7:0\\] using high speed mode. This transfer expects a NACK to be returned."]
#[inline]
pub fn _111(self) -> &'a mut W {
self.variant(CMDW::_111)
}
#[doc = r" Writes raw bits to the field"]
#[inline]
pub fn bits(self, value: u8) -> &'a mut W {
const MASK: u8 = 7;
const OFFSET: u8 = 8;
self.w.bits &= !((MASK as u32) << OFFSET);
self.w.bits |= ((value & MASK) as u32) << OFFSET;
self.w
}
}
impl R {
#[doc = r" Value of the register as raw bits"]
#[inline]
pub fn bits(&self) -> u32 {
self.bits
}
}
impl W {
#[doc = r" Reset value of the register"]
#[inline]
pub fn reset_value() -> W {
W { bits: 0 }
}
#[doc = r" Writes raw bits to the register"]
#[inline]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.bits = bits;
self
}
#[doc = "Bits 0:7 - Transmit Data"]
#[inline]
pub fn data(&mut self) -> _DATAW {
_DATAW { w: self }
}
#[doc = "Bits 8:10 - Command Data"]
#[inline]
pub fn cmd(&mut self) -> _CMDW {
_CMDW { w: self }
}
}