FastArduino v1.10
C++ library to build fast but small Arduino/AVR projects
Loading...
Searching...
No Matches
serial::soft::UARX< board::ExternalInterruptPin, RX_ > Class Template Reference

#include <fastarduino/soft_uart.h>

Inheritance diagram for serial::soft::UARX< board::ExternalInterruptPin, RX_ >:
Collaboration diagram for serial::soft::UARX< board::ExternalInterruptPin, RX_ >:

Public Types

using INT_TYPE = typename interrupt::INTSignal< RX_ >
 The interrupt::INTSignal type for RX_ pin, if it is a External Interrupt pin. More...
 

Public Member Functions

template<uint8_t SIZE_RX>
 UARX (char(&input)[SIZE_RX], INT_TYPE &enabler)
 Construct a new software serial receiver and provide it with a buffer for interrupt-based reception. More...
 
void begin (uint32_t rate, Parity parity=Parity::NONE, StopBits stop_bits=StopBits::ONE)
 Enable the receiver. More...
 
void end (BufferHandling buffer_handling=BufferHandling::KEEP)
 Stop reception. More...
 
- Public Member Functions inherited from serial::UARTErrors
void clear_errors ()
 Reset UART errors to no error. More...
 
uint8_t has_errors () const
 Indicate if there are UART errors pending. More...
 
bool frame_error () const
 Indicate if a frame error has occurred. More...
 
bool data_overrun () const
 Indicate if a data overrun has occurred. More...
 
bool queue_overflow () const
 Indicate if a queue overflow has occurred. More...
 
bool parity_error () const
 Indicate if a parity error has occurred. More...
 

Static Public Attributes

static constexpr const board::DigitalPin RX = board::EXT_PIN<RX_>()
 The board::DigitalPin which shall receive serial signal; this must be either an External INT pin (board::ExternalInterruptPin) or a PinChangeInterrupt pin (board::InterruptPin). More...
 

Friends

struct isr_handler
 

Detailed Description

template<board::ExternalInterruptPin RX_>
class serial::soft::UARX< board::ExternalInterruptPin, RX_ >
See also
UARX_EXT

Definition at line 424 of file soft_uart.h.

Member Typedef Documentation

◆ INT_TYPE

using serial::soft::UARX< board::ExternalInterruptPin, RX_ >::INT_TYPE = typename interrupt::INTSignal<RX_>

The interrupt::INTSignal type for RX_ pin, if it is a External Interrupt pin.

This type is used in begin() call.

See also
begin()

Definition at line 439 of file soft_uart.h.

Constructor & Destructor Documentation

◆ UARX()

template<uint8_t SIZE_RX>
serial::soft::UARX< board::ExternalInterruptPin, RX_ >::UARX ( char(&)  input[SIZE_RX],
INT_TYPE enabler 
)
inlineexplicit

Construct a new software serial receiver and provide it with a buffer for interrupt-based reception.

Reception is asynchronous.

Parameters
inputan array of characters used by this receiver to store content received through serial line, buffered until read through in().
enablerthe interrupt::INTSignal for the RX pin; it is used to enable interrupts on that pin.
See also
REGISTER_UART_INT_ISR()

Definition at line 453 of file soft_uart.h.

Member Function Documentation

◆ begin()

void serial::soft::UARX< board::ExternalInterruptPin, RX_ >::begin ( uint32_t  rate,
Parity  parity = Parity::NONE,
StopBits  stop_bits = StopBits::ONE 
)
inline

Enable the receiver.

This is needed before any reception can take place. Once called, it is possible to read content, received through serial connection, by using in().

Parameters
ratethe transmission rate in bits per second (bps)
paritythe kind of parity check used by transmission
stop_bitsthe number of stop bits used by transmission

Definition at line 468 of file soft_uart.h.

◆ end()

void serial::soft::UARX< board::ExternalInterruptPin, RX_ >::end ( BufferHandling  buffer_handling = BufferHandling::KEEP)
inline

Stop reception.

Once called, it is possible to re-enable reception again by calling begin().

Parameters
buffer_handlinghow to handle output buffer before ending transmissions

Definition at line 482 of file soft_uart.h.

Friends And Related Function Documentation

◆ isr_handler

friend struct isr_handler
friend

Definition at line 500 of file soft_uart.h.

Member Data Documentation

◆ RX

constexpr const board::DigitalPin serial::soft::UARX< board::ExternalInterruptPin, RX_ >::RX = board::EXT_PIN<RX_>()
staticconstexpr

The board::DigitalPin which shall receive serial signal; this must be either an External INT pin (board::ExternalInterruptPin) or a PinChangeInterrupt pin (board::InterruptPin).

Definition at line 432 of file soft_uart.h.


The documentation for this class was generated from the following file: