FastArduino v1.10
C++ library to build fast but small Arduino/AVR projects
Loading...
Searching...
No Matches
serial::hard::UART< USART_ > Class Template Reference

Hardware serial receiver/transceiver API. More...

#include <fastarduino/uart.h>

Inheritance diagram for serial::hard::UART< USART_ >:
Collaboration diagram for serial::hard::UART< USART_ >:

Public Member Functions

template<uint8_t SIZE_RX, uint8_t SIZE_TX>
 UART (char(&input)[SIZE_RX], char(&output)[SIZE_TX])
 Construct a new hardware serial receiver/transceiver and provide it with 2 buffers, one for interrupt-based reception, one for interrupt-based transmission. More...
 
void begin (uint32_t rate, Parity parity=Parity::NONE, StopBits stop_bits=StopBits::ONE)
 Enable the receiver/transceiver. More...
 
void end (BufferHandling buffer_handling=BufferHandling::KEEP)
 Stop all transmissions and receptions. 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::USART USART = USART_
 The hardware board::USART used by this UART. More...
 

Friends

struct isr_handler
 

Detailed Description

template<board::USART USART_>
class serial::hard::UART< USART_ >

Hardware serial receiver/transceiver API.

For this API to be fully functional, you must register the right ISR in your program, through REGISTER_UART_ISR(). You must also register this class as a streams::ostreambuf callback listener through REGISTER_OSTREAMBUF_LISTENERS().

Template Parameters
USART_the hardware board::USART to use
See also
REGISTER_UART_ISR()
REGISTER_OSTREAMBUF_LISTENERS()

Definition at line 419 of file uart.h.

Constructor & Destructor Documentation

◆ UART()

template<board::USART USART_>
template<uint8_t SIZE_RX, uint8_t SIZE_TX>
serial::hard::UART< USART_ >::UART ( char(&)  input[SIZE_RX],
char(&)  output[SIZE_TX] 
)
inline

Construct a new hardware serial receiver/transceiver and provide it with 2 buffers, one for interrupt-based reception, one for interrupt-based transmission.

Parameters
inputan array of characters used by this receiver to store content received through serial line, buffered until read through in().
outputan array of characters used by this transmitter to buffer output during transmission so that write methods are not blocking.
See also
REGISTER_UART_ISR()

Definition at line 440 of file uart.h.

Member Function Documentation

◆ begin()

template<board::USART USART_>
void serial::hard::UART< USART_ >::begin ( uint32_t  rate,
Parity  parity = Parity::NONE,
StopBits  stop_bits = StopBits::ONE 
)
inline

Enable the receiver/transceiver.

This is needed before any transmission or reception can take place. Once called, it is possible to send and receive content through serial connection, by using in() for reading and out() for writing.

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 456 of file uart.h.

◆ end()

template<board::USART USART_>
void serial::hard::UART< USART_ >::end ( BufferHandling  buffer_handling = BufferHandling::KEEP)
inline

Stop all transmissions and receptions.

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

Parameters
buffer_handlinghow to handle output and input buffers before ending transmissions
See also
BufferHandling

Definition at line 469 of file uart.h.

Friends And Related Function Documentation

◆ isr_handler

template<board::USART USART_>
friend struct isr_handler
friend

Definition at line 493 of file uart.h.

Member Data Documentation

◆ USART

template<board::USART USART_>
constexpr const board::USART serial::hard::UART< USART_ >::USART = USART_
staticconstexpr

The hardware board::USART used by this UART.

Definition at line 423 of file uart.h.


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