Struct stm32f4xx_hal::pac::USART1

source ·
pub struct USART1 { /* private fields */ }
Expand description

Universal synchronous asynchronous receiver transmitter

Implementations§

source§

impl USART1

source

pub const PTR: *const RegisterBlock = {0x40011000 as *const stm32f4::stm32f429::usart1::RegisterBlock}

Pointer to the register block

source

pub const fn ptr() -> *const RegisterBlock

Return the pointer to the register block

Trait Implementations§

source§

impl Debug for USART1

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Deref for USART1

§

type Target = RegisterBlock

The resulting type after dereferencing.
source§

fn deref(&self) -> &<USART1 as Deref>::Target

Dereferences the value.
source§

impl Enable for USART1

source§

fn enable(rcc: &RccRB)

Enables peripheral
source§

fn disable(rcc: &RccRB)

Disables peripheral
source§

fn is_enabled() -> bool

Check if peripheral enabled
source§

fn is_disabled() -> bool

Check if peripheral disabled
source§

unsafe fn enable_unchecked()

Safety Read more
source§

unsafe fn disable_unchecked()

Safety Read more
source§

impl Instance for USART1

source§

impl LPEnable for USART1

source§

fn enable_in_low_power(rcc: &RccRB)

Enables peripheral in low power mode
source§

fn disable_in_low_power(rcc: &RccRB)

Disables peripheral in low power mode
source§

fn is_enabled_in_low_power() -> bool

Check if peripheral enabled in low power mode
source§

fn is_disabled_in_low_power() -> bool

Check if peripheral disabled in low power mode
source§

unsafe fn enable_in_low_power_unchecked()

Safety Read more
source§

unsafe fn disable_in_low_power_unchecked()

Safety Read more
source§

impl PeriAddress for USART1

source§

fn address(&self) -> u32

Returns the address to be used by the DMA stream.
§

type MemSize = u8

Memory size of the peripheral.
source§

impl RccBus for USART1

§

type Bus = APB2

Bus type;
source§

impl Reset for USART1

source§

fn reset(rcc: &RccRB)

Resets peripheral
source§

unsafe fn reset_unchecked()

Safety Read more
source§

impl SerialAsync for USART1

§

type Rx<Otype> = Rx<Otype>

Receive
§

type Tx<Otype> = Tx<Otype>

Transmit
source§

impl SerialRs232 for USART1

§

type Cts = Cts

Receive
§

type Rts = Rts

Transmit
source§

impl SerialSync for USART1

§

type Ck = Ck

source§

impl DMASet<StreamX<DMA2, 2>, 4, PeripheralToMemory> for USART1

source§

impl DMASet<StreamX<DMA2, 5>, 4, PeripheralToMemory> for USART1

source§

impl DMASet<StreamX<DMA2, 7>, 4, MemoryToPeripheral> for USART1

source§

impl Send for USART1

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> BusClock for T
where T: RccBus, <T as RccBus>::Bus: BusClock,

source§

fn clock(clocks: &Clocks) -> Rate<u32, 1, 1>

Calculates frequency depending on Clock state
source§

impl<T> BusTimerClock for T
where T: RccBus, <T as RccBus>::Bus: BusTimerClock,

source§

fn timer_clock(clocks: &Clocks) -> Rate<u32, 1, 1>

Calculates base frequency of timer depending on Clock state
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<UART> SerialExt for UART
where UART: Instance,

source§

fn serial<WORD>( self, pins: (impl Into<<UART as SerialAsync>::Tx<PushPull>>, impl Into<<UART as SerialAsync>::Rx<PushPull>>), config: impl Into<Config>, clocks: &Clocks ) -> Result<Serial<UART, WORD>, InvalidConfig>

source§

fn tx<WORD>( self, tx_pin: impl Into<<UART as SerialAsync>::Tx<PushPull>>, config: impl Into<Config>, clocks: &Clocks ) -> Result<Tx<UART, WORD>, InvalidConfig>
where NoPin: Into<<UART as SerialAsync>::Rx<PushPull>>,

source§

fn rx<WORD>( self, rx_pin: impl Into<<UART as SerialAsync>::Rx<PushPull>>, config: impl Into<Config>, clocks: &Clocks ) -> Result<Rx<UART, WORD>, InvalidConfig>
where NoPin: Into<<UART as SerialAsync>::Tx<PushPull>>,

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.