segger::rtt

Struct SeggerRtt

Source
pub struct SeggerRtt<'a, A: Alarm<'a>> { /* private fields */ }

Implementations§

Source§

impl<'a, A: Alarm<'a>> SeggerRtt<'a, A>

Source

pub fn new( alarm: &'a A, config: &'a mut SeggerRttMemory<'a>, ) -> SeggerRtt<'a, A>

Trait Implementations§

Source§

impl<'a, A: Alarm<'a>> AlarmClient for SeggerRtt<'a, A>

Source§

fn alarm(&self)

Callback indicating the alarm time has been reached. The alarm MUST be disabled when this is called. If a new alarm is needed, the client can call Alarm::set_alarm.
Source§

impl<'a, A: Alarm<'a>> Configure for SeggerRtt<'a, A>

Source§

fn configure(&self, _parameters: Parameters) -> Result<(), ErrorCode>

Set the configuration parameters for the UART bus. Read more
Source§

impl<'a, A: Alarm<'a>> Receive<'a> for SeggerRtt<'a, A>

Source§

fn set_receive_client(&self, client: &'a dyn ReceiveClient)

Set the receive client, which will be called when reads complete.
Source§

fn receive_buffer( &self, buffer: &'static mut [u8], len: usize, ) -> Result<(), (ErrorCode, &'static mut [u8])>

Receive rx_len bytes into rx_buffer. Read more
Source§

fn receive_word(&self) -> Result<(), ErrorCode>

Receive a single word of data. Read more
Source§

fn receive_abort(&self) -> Result<(), ErrorCode>

Abort any ongoing receive transfers and return what has been received. Read more
Source§

impl<'a, A: Alarm<'a>> Transmit<'a> for SeggerRtt<'a, A>

Source§

fn set_transmit_client(&self, client: &'a dyn TransmitClient)

Set the transmit client, which will be called when transmissions complete.
Source§

fn transmit_buffer( &self, tx_data: &'static mut [u8], tx_len: usize, ) -> Result<(), (ErrorCode, &'static mut [u8])>

Transmit a buffer of data. Read more
Source§

fn transmit_word(&self, _word: u32) -> Result<(), ErrorCode>

Transmit a single word of data asynchronously. Read more
Source§

fn transmit_abort(&self) -> Result<(), ErrorCode>

Abort an outstanding call to transmit_word or transmit_buffer. Read more

Auto Trait Implementations§

§

impl<'a, A> !Freeze for SeggerRtt<'a, A>

§

impl<'a, A> !RefUnwindSafe for SeggerRtt<'a, A>

§

impl<'a, A> !Send for SeggerRtt<'a, A>

§

impl<'a, A> !Sync for SeggerRtt<'a, A>

§

impl<'a, A> Unpin for SeggerRtt<'a, A>

§

impl<'a, A> !UnwindSafe for SeggerRtt<'a, A>

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>,

Source§

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>,

Source§

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.
Source§

impl<'a, T> Uart<'a> for T
where T: Configure + Transmit<'a> + Receive<'a>,

Source§

impl<'a, T> UartData<'a> for T
where T: Transmit<'a> + Receive<'a>,