1 #ifndef STM32F103_LIB_UART_DEVICE_H_
2 #define STM32F103_LIB_UART_DEVICE_H_
11 #if !defined(LIB_USE_UART) || LIB_USE_UART < 1
12 #error "This configuration is not specified to use this library"
13 #endif // !defined(LIB_USE_UART) || LIB_USE_UART < 1
23 using Listener = std::function<void(const uint8_t)>;
70 void TxByte(
const uint8_t byte);
77 void Tx(
const char* data, ...);
83 void Tx(
const std::string& s);
97 static std::array<std::function<void(const uint8_t)>, 5> listeners_;
106 std::unique_ptr<UART> uart_;
117 #endif // STM32F103_LIB_UART_DEVICE_H_
Configuration for UART device.
Definition: uart_device.h:39
uint32_t baud_rate
UART baud rate.
Definition: uart_device.h:48
void UartDeviceTriggerListener(const uint8_t uart_port, const char data)
Bridging function between IRQ Handler and external user-defined listener.
Definition: uart_device.h:33
static Listener & InvokeListener(const uint8_t uart_port)
Invokes the external listener.
Definition: uart_device.h:91
Devices
UART devices enumeration.
Definition: uart_device.h:28
UartDevice(const Config &config)
Constructor for UART device.
Definition: uart_device.h:30
Implements device-level abstraction for UART devices.
Definition: uart_device.h:18
Definition: uart_device.h:29
void TxByte(const uint8_t byte)
Transmites one byte.
Definition: uart_device.h:32
void Tx(const char *data,...)
Transmits a formatted string.
uint8_t id
UART device ID.
Definition: uart_device.h:43
Definition: uart_device.h:31
std::function< void(const uint8_t)> Listener
UART RX Listener type definition.
Definition: uart_device.h:23
void SetListener(Listener &&listener)
Sets and enables RX listener for this device.