#[doc = r" Value read from the register"]
pub struct R {
bits: u32,
}
impl super::FBPRDY {
#[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 RESERVED17R {
bits: u16,
}
impl RESERVED17R {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u16 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct BANKBUSYR {
bits: bool,
}
impl BANKBUSYR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bit(&self) -> bool {
self.bits
}
#[doc = r" Returns `true` if the bit is clear (0)"]
#[inline]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r" Returns `true` if the bit is set (1)"]
#[inline]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
}
#[doc = r" Value of the field"]
pub struct PUMPRDYR {
bits: bool,
}
impl PUMPRDYR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bit(&self) -> bool {
self.bits
}
#[doc = r" Returns `true` if the bit is clear (0)"]
#[inline]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r" Returns `true` if the bit is set (1)"]
#[inline]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
}
#[doc = r" Value of the field"]
pub struct RESERVED1R {
bits: u16,
}
impl RESERVED1R {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bits(&self) -> u16 {
self.bits
}
}
#[doc = r" Value of the field"]
pub struct BANKRDYR {
bits: bool,
}
impl BANKRDYR {
#[doc = r" Value of the field as raw bits"]
#[inline]
pub fn bit(&self) -> bool {
self.bits
}
#[doc = r" Returns `true` if the bit is clear (0)"]
#[inline]
pub fn bit_is_clear(&self) -> bool {
!self.bit()
}
#[doc = r" Returns `true` if the bit is set (1)"]
#[inline]
pub fn bit_is_set(&self) -> bool {
self.bit()
}
}
impl R {
#[doc = r" Value of the register as raw bits"]
#[inline]
pub fn bits(&self) -> u32 {
self.bits
}
#[doc = "Bits 17:31 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn reserved17(&self) -> RESERVED17R {
let bits = {
const MASK: u16 = 32767;
const OFFSET: u8 = 17;
((self.bits >> OFFSET) & MASK as u32) as u16
};
RESERVED17R { bits }
}
#[doc = "Bit 16 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn bankbusy(&self) -> BANKBUSYR {
let bits = {
const MASK: bool = true;
const OFFSET: u8 = 16;
((self.bits >> OFFSET) & MASK as u32) != 0
};
BANKBUSYR { bits }
}
#[doc = "Bit 15 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn pumprdy(&self) -> PUMPRDYR {
let bits = {
const MASK: bool = true;
const OFFSET: u8 = 15;
((self.bits >> OFFSET) & MASK as u32) != 0
};
PUMPRDYR { bits }
}
#[doc = "Bits 1:14 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn reserved1(&self) -> RESERVED1R {
let bits = {
const MASK: u16 = 16383;
const OFFSET: u8 = 1;
((self.bits >> OFFSET) & MASK as u32) as u16
};
RESERVED1R { bits }
}
#[doc = "Bit 0 - Internal. Only to be used through TI provided API."]
#[inline]
pub fn bankrdy(&self) -> BANKRDYR {
let bits = {
const MASK: bool = true;
const OFFSET: u8 = 0;
((self.bits >> OFFSET) & MASK as u32) != 0
};
BANKRDYR { bits }
}
}