Enum stm32wlxx_hal::pac::lpuart::cr3::OVRDIS_A
pub enum OVRDIS_A {
Enabled = 0,
Disabled = 1,
}
Available on crate feature
stm32wl5x_cm4
only.Expand description
Overrun Disable
Value on reset: 0
Variants§
Enabled = 0
0: Overrun Error Flag, ORE, is set when received data is not read before receiving new data
Disabled = 1
1: Overrun functionality is disabled. If new data is received while the RXNE flag is still set the ORE flag is not set and the new received data overwrites the previous content of the RDR register
Trait Implementations§
impl Copy for OVRDIS_A
impl StructuralPartialEq for OVRDIS_A
Auto Trait Implementations§
impl RefUnwindSafe for OVRDIS_A
impl Send for OVRDIS_A
impl Sync for OVRDIS_A
impl Unpin for OVRDIS_A
impl UnwindSafe for OVRDIS_A
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