stm32f4 0.11.0

Device support crates for STM32F4 devices
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[doc = "Reader of register RESPCMD"]
pub type R = crate::R<u32, super::RESPCMD>;
#[doc = "Reader of field `RESPCMD`"]
pub type RESPCMD_R = crate::R<u8, u8>;
impl R {
    #[doc = "Bits 0:5 - Response command index"]
    #[inline(always)]
    pub fn respcmd(&self) -> RESPCMD_R {
        RESPCMD_R::new((self.bits & 0x3f) as u8)
    }
}