#[doc = r" Value read from the register"]
pub struct R {
bits: u32,
}
impl super::FLASH_E_P {
#[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 PSUR {
bits: u8,
}
impl PSUR {
#[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 ESUR {
bits: u8,
}
impl ESUR {
#[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 PVSUR {
bits: u8,
}
impl PVSUR {
#[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 EVSUR {
bits: u8,
}
impl EVSUR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u8 {
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 psu(&self) -> PSUR {
let bits = {
const MASK: u8 = 255;
const OFFSET: u8 = 24;
((self.bits >> OFFSET) & MASK as u32) as u8
};
PSUR { bits }
}
#[doc = "Bits 16:23 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn esu(&self) -> ESUR {
let bits = {
const MASK: u8 = 255;
const OFFSET: u8 = 16;
((self.bits >> OFFSET) & MASK as u32) as u8
};
ESUR { bits }
}
#[doc = "Bits 8:15 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn pvsu(&self) -> PVSUR {
let bits = {
const MASK: u8 = 255;
const OFFSET: u8 = 8;
((self.bits >> OFFSET) & MASK as u32) as u8
};
PVSUR { bits }
}
#[doc = "Bits 0:7 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn evsu(&self) -> EVSUR {
let bits = {
const MASK: u8 = 255;
const OFFSET: u8 = 0;
((self.bits >> OFFSET) & MASK as u32) as u8
};
EVSUR { bits }
}
}