#[repr(u8)]pub enum FLVLR {
Empty = 0,
Quarter1 = 1,
Quarter2 = 2,
Quarter3 = 3,
Quarter4 = 4,
Full = 5,
}Expand description
FIFO level threshold. This bit is read only. The FIFO level threshold flag is managed only by hardware and its setting depends on SAI block configuration (transmitter or receiver mode). Others: Reserved
Value on reset: 0
Variants§
Empty = 0
0: FIFO empty
Quarter1 = 1
1: FIFO <= 1⁄4 but not empty
Quarter2 = 2
2: 1⁄4 < FIFO <= 1⁄2
Quarter3 = 3
3: 1⁄2 < FIFO <= 3⁄4
Quarter4 = 4
4: 3⁄4 < FIFO but not full
Full = 5
5: FIFO full
Trait Implementations§
impl Copy for FLVLR
impl Eq for FLVLR
impl IsEnum for FLVLR
impl StructuralPartialEq for FLVLR
Auto Trait Implementations§
impl Freeze for FLVLR
impl RefUnwindSafe for FLVLR
impl Send for FLVLR
impl Sync for FLVLR
impl Unpin for FLVLR
impl UnwindSafe for FLVLR
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more