efm32pg12_pac/gpio/
pd_douttgl.rs

1#[doc = "Writer for register PD_DOUTTGL"]
2pub type W = crate::W<u32, super::PD_DOUTTGL>;
3#[doc = "Register PD_DOUTTGL `reset()`'s with value 0"]
4impl crate::ResetValue for super::PD_DOUTTGL {
5    type Type = u32;
6    #[inline(always)]
7    fn reset_value() -> Self::Type {
8        0
9    }
10}
11#[doc = "Write proxy for field `DOUTTGL`"]
12pub struct DOUTTGL_W<'a> {
13    w: &'a mut W,
14}
15impl<'a> DOUTTGL_W<'a> {
16    #[doc = r"Writes raw bits to the field"]
17    #[inline(always)]
18    pub unsafe fn bits(self, value: u16) -> &'a mut W {
19        self.w.bits = (self.w.bits & !0xffff) | ((value as u32) & 0xffff);
20        self.w
21    }
22}
23impl W {
24    #[doc = "Bits 0:15 - Data Out Toggle"]
25    #[inline(always)]
26    pub fn douttgl(&mut self) -> DOUTTGL_W {
27        DOUTTGL_W { w: self }
28    }
29}