stm32f103
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
uart_device.h
Go to the documentation of this file.
1 #ifndef STM32F103_LIB_UART_DEVICE_H_
2 #define STM32F103_LIB_UART_DEVICE_H_
3 
4 #include <cstdint>
5 #include <array>
6 #include <functional>
7 
8 #include "config.h"
9 #include "uart.h"
10 
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
14 
18 class UartDevice {
19  public:
23  using Listener = std::function<void(const uint8_t)>;
24 
28  enum Devices {
34  };
35 
39  struct Config {
43  uint8_t id;
44 
48  uint32_t baud_rate = 115200;
49  };
50 
56  explicit UartDevice(const Config& config);
57 
63  void SetListener(Listener&& listener);
64 
70  void TxByte(const uint8_t byte);
77  void Tx(const char* data, ...);
83  void Tx(const std::string& s);
84 
91  static Listener& InvokeListener(const uint8_t uart_port) { return listeners_[uart_port]; }
92 
93  private:
97  static std::array<std::function<void(const uint8_t)>, 5> listeners_;
98 
102  uint8_t device_id_;
106  std::unique_ptr<UART> uart_;
107 };
108 
115 void UartDeviceTriggerListener(const uint8_t uart_port, const char data);
116 
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.