stm32-metapac

Crates

git

Versions

stm32h7s7l8

Flavors

๐Ÿ“ฃ We want to hear from you! Fill the Rust Embedded 2024 micro-survey.

Struct stm32_metapac::usart::regs::Cr1

#[repr(transparent)]
pub struct Cr1(pub u32);
Expand description

Control register 1

Tuple Fieldsยง

ยง0: u32

Implementationsยง

ยง

impl Cr1

pub const fn ue(&self) -> bool

USART enable

pub fn set_ue(&mut self, val: bool)

USART enable

pub const fn uesm(&self) -> bool

USART enable in Stop mode

pub fn set_uesm(&mut self, val: bool)

USART enable in Stop mode

pub const fn re(&self) -> bool

Receiver enable

pub fn set_re(&mut self, val: bool)

Receiver enable

pub const fn te(&self) -> bool

Transmitter enable

pub fn set_te(&mut self, val: bool)

Transmitter enable

pub const fn idleie(&self) -> bool

IDLE interrupt enable

pub fn set_idleie(&mut self, val: bool)

IDLE interrupt enable

pub const fn rxneie(&self) -> bool

RXNE interrupt enable

pub fn set_rxneie(&mut self, val: bool)

RXNE interrupt enable

pub const fn tcie(&self) -> bool

Transmission complete interrupt enable

pub fn set_tcie(&mut self, val: bool)

Transmission complete interrupt enable

pub const fn txeie(&self) -> bool

TXE interrupt enable

pub fn set_txeie(&mut self, val: bool)

TXE interrupt enable

pub const fn peie(&self) -> bool

PE interrupt enable

pub fn set_peie(&mut self, val: bool)

PE interrupt enable

pub const fn ps(&self) -> Ps

Parity selection

pub fn set_ps(&mut self, val: Ps)

Parity selection

pub const fn pce(&self) -> bool

Parity control enable

pub fn set_pce(&mut self, val: bool)

Parity control enable

pub const fn wake(&self) -> Wake

Receiver wakeup method

pub fn set_wake(&mut self, val: Wake)

Receiver wakeup method

pub const fn m0(&self) -> M0

Word length

pub fn set_m0(&mut self, val: M0)

Word length

pub const fn mme(&self) -> bool

Mute mode enable

pub fn set_mme(&mut self, val: bool)

Mute mode enable

pub const fn cmie(&self) -> bool

Character match interrupt enable

pub fn set_cmie(&mut self, val: bool)

Character match interrupt enable

pub const fn over8(&self) -> Over8

Oversampling mode

pub fn set_over8(&mut self, val: Over8)

Oversampling mode

pub const fn dedt(&self) -> u8

Driver Enable deassertion time

pub fn set_dedt(&mut self, val: u8)

Driver Enable deassertion time

pub const fn deat(&self) -> u8

Driver Enable assertion time

pub fn set_deat(&mut self, val: u8)

Driver Enable assertion time

pub const fn rtoie(&self) -> bool

Receiver timeout interrupt enable

pub fn set_rtoie(&mut self, val: bool)

Receiver timeout interrupt enable

pub const fn eobie(&self) -> bool

End of Block interrupt enable

pub fn set_eobie(&mut self, val: bool)

End of Block interrupt enable

pub const fn m1(&self) -> M1

Word length

pub fn set_m1(&mut self, val: M1)

Word length

pub const fn fifoen(&self) -> bool

FIFO mode enable

pub fn set_fifoen(&mut self, val: bool)

FIFO mode enable

pub const fn txfeie(&self) -> bool

TXFIFO empty interrupt enable

pub fn set_txfeie(&mut self, val: bool)

TXFIFO empty interrupt enable

pub const fn rxffie(&self) -> bool

RXFIFO Full interrupt enable

pub fn set_rxffie(&mut self, val: bool)

RXFIFO Full interrupt enable

Trait Implementationsยง

ยง

impl Clone for Cr1

ยง

fn clone(&self) -> Cr1

Returns a copy of the value. Read more
1.0.0 ยท sourceยง

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
ยง

impl Default for Cr1

ยง

fn default() -> Cr1

Returns the โ€œdefault valueโ€ for a type. Read more
ยง

impl PartialEq for Cr1

ยง

fn eq(&self, other: &Cr1) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 ยท sourceยง

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
ยง

impl Copy for Cr1

ยง

impl Eq for Cr1

ยง

impl StructuralEq for Cr1

ยง

impl StructuralPartialEq for Cr1

Auto Trait Implementationsยง

Blanket Implementationsยง

sourceยง

impl<T> Any for T
where T: 'static + ?Sized,

sourceยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
sourceยง

impl<T> Borrow<T> for T
where T: ?Sized,

sourceยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
sourceยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

sourceยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
sourceยง

impl<T> From<T> for T

sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

sourceยง

impl<T, U> Into<U> for T
where U: From<T>,

sourceยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

sourceยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

ยง

type Error = Infallible

The type returned in the event of a conversion error.
sourceยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
sourceยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

ยง

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
sourceยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.