#[doc = "Register `CLK_SYS_DIV` reader"]
pub type R = crate::R<CLK_SYS_DIV_SPEC>;
#[doc = "Register `CLK_SYS_DIV` writer"]
pub type W = crate::W<CLK_SYS_DIV_SPEC>;
#[doc = "Field `FRAC` reader - Fractional component of the divisor"]
pub type FRAC_R = crate::FieldReader;
#[doc = "Field `FRAC` writer - Fractional component of the divisor"]
pub type FRAC_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
#[doc = "Field `INT` reader - Integer component of the divisor, 0 -> divide by 2^16"]
pub type INT_R = crate::FieldReader<u32>;
#[doc = "Field `INT` writer - Integer component of the divisor, 0 -> divide by 2^16"]
pub type INT_W<'a, REG> = crate::FieldWriter<'a, REG, 24, u32>;
impl R {
#[doc = "Bits 0:7 - Fractional component of the divisor"]
#[inline(always)]
pub fn frac(&self) -> FRAC_R {
FRAC_R::new((self.bits & 0xff) as u8)
}
#[doc = "Bits 8:31 - Integer component of the divisor, 0 -> divide by 2^16"]
#[inline(always)]
pub fn int(&self) -> INT_R {
INT_R::new((self.bits >> 8) & 0x00ff_ffff)
}
}
impl W {
#[doc = "Bits 0:7 - Fractional component of the divisor"]
#[inline(always)]
#[must_use]
pub fn frac(&mut self) -> FRAC_W<CLK_SYS_DIV_SPEC> {
FRAC_W::new(self, 0)
}
#[doc = "Bits 8:31 - Integer component of the divisor, 0 -> divide by 2^16"]
#[inline(always)]
#[must_use]
pub fn int(&mut self) -> INT_W<CLK_SYS_DIV_SPEC> {
INT_W::new(self, 8)
}
#[doc = r" Writes raw bits to the register."]
#[doc = r""]
#[doc = r" # Safety"]
#[doc = r""]
#[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.bits = bits;
self
}
}
#[doc = "Clock divisor, can be changed on-the-fly
You can [`read`](crate::generic::Reg::read) this register and get [`clk_sys_div::R`](R). You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`clk_sys_div::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct CLK_SYS_DIV_SPEC;
impl crate::RegisterSpec for CLK_SYS_DIV_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [`clk_sys_div::R`](R) reader structure"]
impl crate::Readable for CLK_SYS_DIV_SPEC {}
#[doc = "`write(|w| ..)` method takes [`clk_sys_div::W`](W) writer structure"]
impl crate::Writable for CLK_SYS_DIV_SPEC {
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
#[doc = "`reset()` method sets CLK_SYS_DIV to value 0x0100"]
impl crate::Resettable for CLK_SYS_DIV_SPEC {
const RESET_VALUE: u32 = 0x0100;
}