#[doc = r" Value read from the register"]
pub struct R {
bits: u8,
}
#[doc = r" Value to write to the register"]
pub struct W {
bits: u8,
}
impl super::DDR {
#[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 = "Possible values of the field `DD6`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DD6R {
#[doc = "Pin is configured as an input"]
INPUT,
#[doc = "Pin is configured as an output"]
OUTPUT,
}
impl DD6R {
#[doc = r" Returns `true` if the bit is clear (0)"]
#[inline]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r" Returns `true` if the bit is set (1)"]
#[inline]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bit(&self) -> bool {
match *self {
DD6R::INPUT => false,
DD6R::OUTPUT => true,
}
}
#[allow(missing_docs)]
#[doc(hidden)]
#[inline]
pub fn _from(value: bool) -> DD6R {
match value {
false => DD6R::INPUT,
true => DD6R::OUTPUT,
}
}
#[doc = "Checks if the value of the field is `INPUT`"]
#[inline]
pub fn is_input(&self) -> bool {
*self == DD6R::INPUT
}
#[doc = "Checks if the value of the field is `OUTPUT`"]
#[inline]
pub fn is_output(&self) -> bool {
*self == DD6R::OUTPUT
}
}
#[doc = "Possible values of the field `DD2`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DD2R {
#[doc = "Pin is configured as an input"]
INPUT,
#[doc = "Pin is configured as an output"]
OUTPUT,
}
impl DD2R {
#[doc = r" Returns `true` if the bit is clear (0)"]
#[inline]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r" Returns `true` if the bit is set (1)"]
#[inline]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bit(&self) -> bool {
match *self {
DD2R::INPUT => false,
DD2R::OUTPUT => true,
}
}
#[allow(missing_docs)]
#[doc(hidden)]
#[inline]
pub fn _from(value: bool) -> DD2R {
match value {
false => DD2R::INPUT,
true => DD2R::OUTPUT,
}
}
#[doc = "Checks if the value of the field is `INPUT`"]
#[inline]
pub fn is_input(&self) -> bool {
*self == DD2R::INPUT
}
#[doc = "Checks if the value of the field is `OUTPUT`"]
#[inline]
pub fn is_output(&self) -> bool {
*self == DD2R::OUTPUT
}
}
#[doc = "Values that can be written to the field `DD6`"]
pub enum DD6W {
#[doc = "Pin is configured as an input"]
INPUT,
#[doc = "Pin is configured as an output"]
OUTPUT,
}
impl DD6W {
#[allow(missing_docs)]
#[doc(hidden)]
#[inline]
pub fn _bits(&self) -> bool {
match *self {
DD6W::INPUT => false,
DD6W::OUTPUT => true,
}
}
}
#[doc = r" Proxy"]
pub struct _DD6W<'a> {
w: &'a mut W,
}
impl<'a> _DD6W<'a> {
#[doc = r" Writes `variant` to the field"]
#[inline]
pub fn variant(self, variant: DD6W) -> &'a mut W {
{
self.bit(variant._bits())
}
}
#[doc = "Pin is configured as an input"]
#[inline]
pub fn input(self) -> &'a mut W {
self.variant(DD6W::INPUT)
}
#[doc = "Pin is configured as an output"]
#[inline]
pub fn output(self) -> &'a mut W {
self.variant(DD6W::OUTPUT)
}
#[doc = r" Sets the field bit"]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r" Clears the field bit"]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r" Writes raw bits to the field"]
#[inline]
pub fn bit(self, value: bool) -> &'a mut W {
const MASK: bool = true;
const OFFSET: u8 = 6;
self.w.bits &= !((MASK as u8) << OFFSET);
self.w.bits |= ((value & MASK) as u8) << OFFSET;
self.w
}
}
#[doc = "Values that can be written to the field `DD2`"]
pub enum DD2W {
#[doc = "Pin is configured as an input"]
INPUT,
#[doc = "Pin is configured as an output"]
OUTPUT,
}
impl DD2W {
#[allow(missing_docs)]
#[doc(hidden)]
#[inline]
pub fn _bits(&self) -> bool {
match *self {
DD2W::INPUT => false,
DD2W::OUTPUT => true,
}
}
}
#[doc = r" Proxy"]
pub struct _DD2W<'a> {
w: &'a mut W,
}
impl<'a> _DD2W<'a> {
#[doc = r" Writes `variant` to the field"]
#[inline]
pub fn variant(self, variant: DD2W) -> &'a mut W {
{
self.bit(variant._bits())
}
}
#[doc = "Pin is configured as an input"]
#[inline]
pub fn input(self) -> &'a mut W {
self.variant(DD2W::INPUT)
}
#[doc = "Pin is configured as an output"]
#[inline]
pub fn output(self) -> &'a mut W {
self.variant(DD2W::OUTPUT)
}
#[doc = r" Sets the field bit"]
pub fn set_bit(self) -> &'a mut W {
self.bit(true)
}
#[doc = r" Clears the field bit"]
pub fn clear_bit(self) -> &'a mut W {
self.bit(false)
}
#[doc = r" Writes raw bits to the field"]
#[inline]
pub fn bit(self, value: bool) -> &'a mut W {
const MASK: bool = true;
const OFFSET: u8 = 2;
self.w.bits &= !((MASK as u8) << OFFSET);
self.w.bits |= ((value & MASK) as u8) << OFFSET;
self.w
}
}
impl R {
#[doc = r" Value of the register as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
#[doc = "Bit 6 - Pin 6 Direction"]
#[inline]
pub fn dd6(&self) -> DD6R {
DD6R::_from({
const MASK: bool = true;
const OFFSET: u8 = 6;
((self.bits >> OFFSET) & MASK as u8) != 0
})
}
#[doc = "Bit 2 - Pin 2 Direction"]
#[inline]
pub fn dd2(&self) -> DD2R {
DD2R::_from({
const MASK: bool = true;
const OFFSET: u8 = 2;
((self.bits >> OFFSET) & MASK as u8) != 0
})
}
}
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: u8) -> &mut Self {
self.bits = bits;
self
}
#[doc = "Bit 6 - Pin 6 Direction"]
#[inline]
pub fn dd6(&mut self) -> _DD6W {
_DD6W { w: self }
}
#[doc = "Bit 2 - Pin 2 Direction"]
#[inline]
pub fn dd2(&mut self) -> _DD2W {
_DD2W { w: self }
}
}