Struct nrf9160_hal::Uarte[][src]

pub struct Uarte<T>(_);
Expand description

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

Implementations

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

pub fn new(
    uarte: T,
    pins: Pins,
    parity: PARITY_A,
    baudrate: BAUDRATE_A
) -> Uarte<T>
[src]

pub fn write(&mut self, tx_buffer: &[u8]) -> Result<(), Error>[src]

Write via UARTE.

This method uses transmits all bytes in tx_buffer.

The buffer must have a length of at most 255 bytes on the nRF52832 and at most 65535 bytes on the nRF52840.

pub fn read(&mut self, rx_buffer: &mut [u8]) -> Result<(), Error>[src]

Read via UARTE.

This method fills all bytes in rx_buffer, and blocks until the buffer is full.

The buffer must have a length of at most 255 bytes.

pub fn read_timeout<I>(
    &mut self,
    rx_buffer: &mut [u8],
    timer: &mut Timer<I, OneShot>,
    cycles: u32
) -> Result<(), Error> where
    I: Instance
[src]

Read via UARTE.

This method fills all bytes in rx_buffer, and blocks until the buffer is full or the timeout expires, whichever comes first.

If the timeout occurs, an Error::Timeout(n) will be returned, where n is the number of bytes read successfully.

This method assumes the interrupt for the given timer is NOT enabled, and in cases where a timeout does NOT occur, the timer will be left running until completion.

The buffer must have a length of at most 255 bytes.

pub fn free(self) -> (T, Pins)[src]

Return the raw interface to the underlying UARTE peripheral.

Trait Implementations

impl<T> Write for Uarte<T> where
    T: Instance
[src]

pub fn write_str(&mut self, s: &str) -> Result<(), Error>[src]

Writes a string slice into this writer, returning whether the write succeeded. Read more

fn write_char(&mut self, c: char) -> Result<(), Error>1.1.0[src]

Writes a char into this writer, returning whether the write succeeded. Read more

fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Error>1.0.0[src]

Glue for usage of the write! macro with implementors of this trait. Read more

Auto Trait Implementations

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

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

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

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.