[][src]Struct nrf52832_hal::Uarte

pub struct Uarte<T>(_);

Interface to a UARTE instance

This is a very basic interface that comes with the following limitations:

  • The UARTE instances share the same address space with instances of UART. You need to make sure that conflicting instances are disabled before using Uarte. See product specification:
    • nrf52832: Section 15.2
    • nrf52840: Section 6.1.2

Methods

impl<T> Uarte<T> where
    T: UarteExt
[src]

Write via UARTE

This method uses transmits all bytes in tx_buffer

The buffer must have a length of at most 255 bytes

Return the raw interface to the underlying UARTE peripheral

Auto Trait Implementations

impl<T> Send for Uarte<T> where
    T: Send

impl<T> Sync for Uarte<T> where
    T: Sync

Blanket Implementations

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T, U> Into for T where
    U: From<T>, 
[src]

Performs the conversion.

impl<T> Borrow for T where
    T: ?Sized
[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut for T where
    T: ?Sized
[src]

Mutably borrows from an owned value. Read more

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more