#[doc = r" Value read from the register"]
pub struct R {
bits: u32,
}
impl super::FLASH_EH_SEQ {
#[doc = r" Reads the contents of the register"]
#[inline]
pub fn read(&self) -> R {
R { bits: self.register.get() }
}
}
#[doc = r" Value of the field"]
pub struct EHR {
bits: u8,
}
impl EHR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct SEQR {
bits: u8,
}
impl SEQR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct VSTATR {
bits: u8,
}
impl VSTATR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct SM_FREQUENCYR {
bits: u16,
}
impl SM_FREQUENCYR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u16 {
self.bits
}
}
impl R {
#[doc = r" Value of the register as raw bits"]
#[inline]
pub fn bits(&self) -> u32 {
self.bits
}
#[doc = "Bits 24:31 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn eh(&self) -> EHR {
let bits = {
const MASK: u8 = 255;
const OFFSET: u8 = 24;
((self.bits >> OFFSET) & MASK as u32) as u8
};
EHR { bits }
}
#[doc = "Bits 16:23 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn seq(&self) -> SEQR {
let bits = {
const MASK: u8 = 255;
const OFFSET: u8 = 16;
((self.bits >> OFFSET) & MASK as u32) as u8
};
SEQR { bits }
}
#[doc = "Bits 12:15 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn vstat(&self) -> VSTATR {
let bits = {
const MASK: u8 = 15;
const OFFSET: u8 = 12;
((self.bits >> OFFSET) & MASK as u32) as u8
};
VSTATR { bits }
}
#[doc = "Bits 0:11 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn sm_frequency(&self) -> SM_FREQUENCYR {
let bits = {
const MASK: u16 = 4095;
const OFFSET: u8 = 0;
((self.bits >> OFFSET) & MASK as u32) as u16
};
SM_FREQUENCYR { bits }
}
}