stm32f4 0.16.0

Device support crates for STM32F4 devices
Documentation
///Register `BGCOLR` reader
pub type R = crate::R<BGCOLRrs>;
///Register `BGCOLR` writer
pub type W = crate::W<BGCOLRrs>;
///Field `BLUE` reader - Blue Value
pub type BLUE_R = crate::FieldReader;
///Field `BLUE` writer - Blue Value
pub type BLUE_W<'a, REG> = crate::FieldWriter<'a, REG, 8, u8, crate::Safe>;
///Field `GREEN` reader - Green Value
pub type GREEN_R = crate::FieldReader;
///Field `GREEN` writer - Green Value
pub type GREEN_W<'a, REG> = crate::FieldWriter<'a, REG, 8, u8, crate::Safe>;
///Field `RED` reader - Red Value
pub type RED_R = crate::FieldReader;
///Field `RED` writer - Red Value
pub type RED_W<'a, REG> = crate::FieldWriter<'a, REG, 8, u8, crate::Safe>;
impl R {
    ///Bits 0:7 - Blue Value
    #[inline(always)]
    pub fn blue(&self) -> BLUE_R {
        BLUE_R::new((self.bits & 0xff) as u8)
    }
    ///Bits 8:15 - Green Value
    #[inline(always)]
    pub fn green(&self) -> GREEN_R {
        GREEN_R::new(((self.bits >> 8) & 0xff) as u8)
    }
    ///Bits 16:23 - Red Value
    #[inline(always)]
    pub fn red(&self) -> RED_R {
        RED_R::new(((self.bits >> 16) & 0xff) as u8)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("BGCOLR")
            .field("red", &self.red())
            .field("green", &self.green())
            .field("blue", &self.blue())
            .finish()
    }
}
impl W {
    ///Bits 0:7 - Blue Value
    #[inline(always)]
    pub fn blue(&mut self) -> BLUE_W<BGCOLRrs> {
        BLUE_W::new(self, 0)
    }
    ///Bits 8:15 - Green Value
    #[inline(always)]
    pub fn green(&mut self) -> GREEN_W<BGCOLRrs> {
        GREEN_W::new(self, 8)
    }
    ///Bits 16:23 - Red Value
    #[inline(always)]
    pub fn red(&mut self) -> RED_W<BGCOLRrs> {
        RED_W::new(self, 16)
    }
}
/**background color register

You can [`read`](crate::Reg::read) this register and get [`bgcolr::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`bgcolr::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32F469.html#DMA2D:BGCOLR)*/
pub struct BGCOLRrs;
impl crate::RegisterSpec for BGCOLRrs {
    type Ux = u32;
}
///`read()` method returns [`bgcolr::R`](R) reader structure
impl crate::Readable for BGCOLRrs {}
///`write(|w| ..)` method takes [`bgcolr::W`](W) writer structure
impl crate::Writable for BGCOLRrs {
    type Safety = crate::Unsafe;
}
///`reset()` method sets BGCOLR to value 0
impl crate::Resettable for BGCOLRrs {}