avr-device 0.2.3

Register access crate for AVR microcontrollers
Documentation
#[doc = "Register `SPSR` reader"]
pub struct R(crate::R<SPSR_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<SPSR_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl core::convert::From<crate::R<SPSR_SPEC>> for R {
    fn from(reader: crate::R<SPSR_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Field `SPI2X` reader - Double SPI Speed Bit"]
pub struct SPI2X_R(crate::FieldReader<bool, bool>);
impl SPI2X_R {
    pub(crate) fn new(bits: bool) -> Self {
        SPI2X_R(crate::FieldReader::new(bits))
    }
}
impl core::ops::Deref for SPI2X_R {
    type Target = crate::FieldReader<bool, bool>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
#[doc = "Field `WCOL` reader - Write Collision Flag"]
pub struct WCOL_R(crate::FieldReader<bool, bool>);
impl WCOL_R {
    pub(crate) fn new(bits: bool) -> Self {
        WCOL_R(crate::FieldReader::new(bits))
    }
}
impl core::ops::Deref for WCOL_R {
    type Target = crate::FieldReader<bool, bool>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
#[doc = "Field `SPIF` reader - SPI Interrupt Flag"]
pub struct SPIF_R(crate::FieldReader<bool, bool>);
impl SPIF_R {
    pub(crate) fn new(bits: bool) -> Self {
        SPIF_R(crate::FieldReader::new(bits))
    }
}
impl core::ops::Deref for SPIF_R {
    type Target = crate::FieldReader<bool, bool>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl R {
    #[doc = "Bit 0 - Double SPI Speed Bit"]
    #[inline(always)]
    pub fn spi2x(&self) -> SPI2X_R {
        SPI2X_R::new((self.bits & 0x01) != 0)
    }
    #[doc = "Bit 6 - Write Collision Flag"]
    #[inline(always)]
    pub fn wcol(&self) -> WCOL_R {
        WCOL_R::new(((self.bits >> 6) & 0x01) != 0)
    }
    #[doc = "Bit 7 - SPI Interrupt Flag"]
    #[inline(always)]
    pub fn spif(&self) -> SPIF_R {
        SPIF_R::new(((self.bits >> 7) & 0x01) != 0)
    }
}
#[doc = "SPI Status Register\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [spsr](index.html) module"]
pub struct SPSR_SPEC;
impl crate::RegisterSpec for SPSR_SPEC {
    type Ux = u8;
}
#[doc = "`read()` method returns [spsr::R](R) reader structure"]
impl crate::Readable for SPSR_SPEC {
    type Reader = R;
}
#[doc = "`reset()` method sets SPSR to value 0"]
impl crate::Resettable for SPSR_SPEC {
    #[inline(always)]
    fn reset_value() -> Self::Ux {
        0
    }
}