pub enum FifoAlmostFullLevelInterrupt {
Show 16 variants
L0,
L1,
L2,
L3,
L4,
L5,
L6,
L7,
L8,
L9,
L10,
L11,
L12,
L13,
L14,
L15,
}
Expand description
Number of empty data samples when the FIFO almost full interrupt is issued.
Variants§
L0
Interrupt issue when 0 spaces are left in FIFO. (default)
L1
Interrupt issue when 1 space is left in FIFO.
L2
Interrupt issue when 2 spaces are left in FIFO.
L3
Interrupt issue when 3 spaces are left in FIFO.
L4
Interrupt issue when 4 spaces are left in FIFO.
L5
Interrupt issue when 5 spaces are left in FIFO.
L6
Interrupt issue when 6 spaces are left in FIFO.
L7
Interrupt issue when 7 spaces are left in FIFO.
L8
Interrupt issue when 8 spaces are left in FIFO.
L9
Interrupt issue when 9 spaces are left in FIFO.
L10
Interrupt issue when 10 spaces are left in FIFO.
L11
Interrupt issue when 11 spaces are left in FIFO.
L12
Interrupt issue when 12 spaces are left in FIFO.
L13
Interrupt issue when 13 spaces are left in FIFO.
L14
Interrupt issue when 14 spaces are left in FIFO.
L15
Interrupt issue when 15 spaces are left in FIFO.
Trait Implementations§
Source§impl Clone for FifoAlmostFullLevelInterrupt
impl Clone for FifoAlmostFullLevelInterrupt
Source§fn clone(&self) -> FifoAlmostFullLevelInterrupt
fn clone(&self) -> FifoAlmostFullLevelInterrupt
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for FifoAlmostFullLevelInterrupt
impl Debug for FifoAlmostFullLevelInterrupt
Source§impl PartialEq for FifoAlmostFullLevelInterrupt
impl PartialEq for FifoAlmostFullLevelInterrupt
Source§fn eq(&self, other: &FifoAlmostFullLevelInterrupt) -> bool
fn eq(&self, other: &FifoAlmostFullLevelInterrupt) -> bool
self
and other
values to be equal, and is used by ==
.