stm32f7-staging 0.18.1

Device support crates for STM32F7 devices
Documentation
///Register `MIS` reader
pub type R = crate::R<MISrs>;
/**Capture complete masked interrupt status

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum FRAME_MIS {
    ///0: No interrupt is generated after a complete capture
    Disabled = 0,
    ///1: An interrupt is generated at the end of each received frame/crop window (in crop mode) and the FRAME_IE bit is set in DCMI_IER
    Enabled = 1,
}
impl From<FRAME_MIS> for bool {
    #[inline(always)]
    fn from(variant: FRAME_MIS) -> Self {
        variant as u8 != 0
    }
}
///Field `FRAME_MIS` reader - Capture complete masked interrupt status
pub type FRAME_MIS_R = crate::BitReader<FRAME_MIS>;
impl FRAME_MIS_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> FRAME_MIS {
        match self.bits {
            false => FRAME_MIS::Disabled,
            true => FRAME_MIS::Enabled,
        }
    }
    ///No interrupt is generated after a complete capture
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == FRAME_MIS::Disabled
    }
    ///An interrupt is generated at the end of each received frame/crop window (in crop mode) and the FRAME_IE bit is set in DCMI_IER
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == FRAME_MIS::Enabled
    }
}
/**Overrun masked interrupt status

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum OVR_MIS {
    ///0: No interrupt is generated on overrun
    Disabled = 0,
    ///1: An interrupt is generated if the DMA was not able to transfer the last data before new data (32-bit) are received and the OVR_IE bit is set in DCMI_IER
    Enabled = 1,
}
impl From<OVR_MIS> for bool {
    #[inline(always)]
    fn from(variant: OVR_MIS) -> Self {
        variant as u8 != 0
    }
}
///Field `OVR_MIS` reader - Overrun masked interrupt status
pub type OVR_MIS_R = crate::BitReader<OVR_MIS>;
impl OVR_MIS_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> OVR_MIS {
        match self.bits {
            false => OVR_MIS::Disabled,
            true => OVR_MIS::Enabled,
        }
    }
    ///No interrupt is generated on overrun
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == OVR_MIS::Disabled
    }
    ///An interrupt is generated if the DMA was not able to transfer the last data before new data (32-bit) are received and the OVR_IE bit is set in DCMI_IER
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == OVR_MIS::Enabled
    }
}
/**Synchronization error masked interrupt status

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ERR_MIS {
    ///0: No interrupt is generated on a synchronization error
    Disabled = 0,
    ///1: An interrupt is generated if the embedded synchronization codes are not received in the correct order and the ERR_IE bit in DCMI_IER is set
    Enabled = 1,
}
impl From<ERR_MIS> for bool {
    #[inline(always)]
    fn from(variant: ERR_MIS) -> Self {
        variant as u8 != 0
    }
}
///Field `ERR_MIS` reader - Synchronization error masked interrupt status
pub type ERR_MIS_R = crate::BitReader<ERR_MIS>;
impl ERR_MIS_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> ERR_MIS {
        match self.bits {
            false => ERR_MIS::Disabled,
            true => ERR_MIS::Enabled,
        }
    }
    ///No interrupt is generated on a synchronization error
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == ERR_MIS::Disabled
    }
    ///An interrupt is generated if the embedded synchronization codes are not received in the correct order and the ERR_IE bit in DCMI_IER is set
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == ERR_MIS::Enabled
    }
}
/**VSYNC masked interrupt status

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum VSYNC_MIS {
    ///0: No interrupt is generated on DCMI_VSYNC transitions
    Disabled = 0,
    ///1: An interrupt is generated on each DCMI_VSYNC transition from the inactive to the active state and the VSYNC_IE bit is set in DCMI_IER
    Enabled = 1,
}
impl From<VSYNC_MIS> for bool {
    #[inline(always)]
    fn from(variant: VSYNC_MIS) -> Self {
        variant as u8 != 0
    }
}
///Field `VSYNC_MIS` reader - VSYNC masked interrupt status
pub type VSYNC_MIS_R = crate::BitReader<VSYNC_MIS>;
impl VSYNC_MIS_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> VSYNC_MIS {
        match self.bits {
            false => VSYNC_MIS::Disabled,
            true => VSYNC_MIS::Enabled,
        }
    }
    ///No interrupt is generated on DCMI_VSYNC transitions
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == VSYNC_MIS::Disabled
    }
    ///An interrupt is generated on each DCMI_VSYNC transition from the inactive to the active state and the VSYNC_IE bit is set in DCMI_IER
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == VSYNC_MIS::Enabled
    }
}
/**Line masked interrupt status

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum LINE_MIS {
    ///0: No interrupt generation when the line is received
    Disabled = 0,
    ///1: An Interrupt is generated when a line has been completely received and the LINE_IE bit is set in DCMI_IER
    Enabled = 1,
}
impl From<LINE_MIS> for bool {
    #[inline(always)]
    fn from(variant: LINE_MIS) -> Self {
        variant as u8 != 0
    }
}
///Field `LINE_MIS` reader - Line masked interrupt status
pub type LINE_MIS_R = crate::BitReader<LINE_MIS>;
impl LINE_MIS_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> LINE_MIS {
        match self.bits {
            false => LINE_MIS::Disabled,
            true => LINE_MIS::Enabled,
        }
    }
    ///No interrupt generation when the line is received
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == LINE_MIS::Disabled
    }
    ///An Interrupt is generated when a line has been completely received and the LINE_IE bit is set in DCMI_IER
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == LINE_MIS::Enabled
    }
}
impl R {
    ///Bit 0 - Capture complete masked interrupt status
    #[inline(always)]
    pub fn frame_mis(&self) -> FRAME_MIS_R {
        FRAME_MIS_R::new((self.bits & 1) != 0)
    }
    ///Bit 1 - Overrun masked interrupt status
    #[inline(always)]
    pub fn ovr_mis(&self) -> OVR_MIS_R {
        OVR_MIS_R::new(((self.bits >> 1) & 1) != 0)
    }
    ///Bit 2 - Synchronization error masked interrupt status
    #[inline(always)]
    pub fn err_mis(&self) -> ERR_MIS_R {
        ERR_MIS_R::new(((self.bits >> 2) & 1) != 0)
    }
    ///Bit 3 - VSYNC masked interrupt status
    #[inline(always)]
    pub fn vsync_mis(&self) -> VSYNC_MIS_R {
        VSYNC_MIS_R::new(((self.bits >> 3) & 1) != 0)
    }
    ///Bit 4 - Line masked interrupt status
    #[inline(always)]
    pub fn line_mis(&self) -> LINE_MIS_R {
        LINE_MIS_R::new(((self.bits >> 4) & 1) != 0)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("MIS")
            .field("line_mis", &self.line_mis())
            .field("vsync_mis", &self.vsync_mis())
            .field("err_mis", &self.err_mis())
            .field("ovr_mis", &self.ovr_mis())
            .field("frame_mis", &self.frame_mis())
            .finish()
    }
}
/**masked interrupt status register

You can [`read`](crate::Reg::read) this register and get [`mis::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32F765.html#DCMI:MIS)*/
pub struct MISrs;
impl crate::RegisterSpec for MISrs {
    type Ux = u32;
}
///`read()` method returns [`mis::R`](R) reader structure
impl crate::Readable for MISrs {}
///`reset()` method sets MIS to value 0
impl crate::Resettable for MISrs {}