1#ifndef Cpl_Io_Serial_ST_M32F4_StreamDriver_h_
2#define Cpl_Io_Serial_ST_M32F4_StreamDriver_h_
15#include "colony_config.h"
21#ifndef OPTION_CPL_IO_SERIAL_ST_M32F4_MAX_UARTS
22#define OPTION_CPL_IO_SERIAL_ST_M32F4_MAX_UARTS 1
64 void start( IRQn_Type uartIrqNum,
65 UART_HandleTypeDef* uartHdl )
noexcept;
71 void stop(
void )
noexcept;
84 bool write(
const void* data,
size_t numBytesToTx )
noexcept;
98 bool read(
void* data,
int maxBytes,
int& numBytesRx )
noexcept;
This file defines the common/generic interfaces that all Colony.
#define OPTION_CPL_IO_SERIAL_ST_M32F4_MAX_UARTS
Maximum number of UARTs/instances that are supported.
Definition StreamDriver.h:22
This template class implements a THREAD SAFE Ring Buffer.
Definition RingBufferMT.h:33
This concrete class implements a non-busy-wait blocking Transmit/Receive Stream UART driver with a SO...
Definition StreamDriver.h:49
bool available(void) const noexcept
This method returns true if at least one byte is available in the inbound buffer.
size_t m_errCount
A Receive error was encountered.
Definition StreamDriver.h:181
Cpl::System::Thread * m_rxWaiterPtr
Handle of the blocked RX client thread (if there is one)
Definition StreamDriver.h:169
static void su_rxEventCompleteCallback(UART_HandleTypeDef *huart, uint16_t bytesReceived) noexcept
Used to pre-process the HAL_UARTEx_RxEventCallback() call to the specific Driver instance.
static HalMapping_T m_mappings[OPTION_CPL_IO_SERIAL_ST_M32F4_MAX_UARTS]
Map the HAL UART to a transmitter instance.
Definition StreamDriver.h:190
bool write(const void *data, size_t numBytesToTx) noexcept
Transmits the specified number of bytes.
UART_HandleTypeDef * m_uartHdl
Handle to my low level hardware.
Definition StreamDriver.h:163
bool read(void *data, int maxBytes, int &numBytesRx) noexcept
Receives at most the specified maximum number of bytes.
StreamDriver(Cpl::Container::RingBuffer< uint8_t > &txBuffer, Cpl::Container::RingBuffer< uint8_t > &rxBuffer) noexcept
Constructor.
void start(IRQn_Type uartIrqNum, UART_HandleTypeDef *uartHdl) noexcept
This method starts/enables the driver.
void su_txDoneIsr(void) noexcept
This method SHOULD only be called when the HAL Transmit operation has completed (aka from the HAL_UAR...
UART_HandleTypeDef * halHandle
HAL Handle of the UART.
Definition StreamDriver.h:157
bool m_rxActive
Receive state.
Definition StreamDriver.h:187
Cpl::Container::RingBuffer< uint8_t > & m_txBuffer
Transmit buffer.
Definition StreamDriver.h:175
IRQn_Type m_uartIrqNum
IRQ number of the UART being used.
Definition StreamDriver.h:172
void su_rxDataAndErrorIsr(uint16_t bytesReceived) noexcept
The method SHOULD only be called when the HAL Receive operation has completed (aka from the HAL_UART_...
Cpl::System::Thread * m_txWaiterPtr
Handle of the blocked TX client thread (if there is one)
Definition StreamDriver.h:166
Cpl::Container::RingBuffer< uint8_t > & m_rxBuffer
Receive buffer.
Definition StreamDriver.h:178
void stop(void) noexcept
This method will stop/disable the driver.
size_t getRXErrorsCounts(bool clearCount=true) noexcept
This method returns and optionally clears the driver's RX error counter.
StreamDriver * driver
Associated CPL driver instance.
Definition StreamDriver.h:158
static void su_rxErrorCompleteCallback(UART_HandleTypeDef *huart) noexcept
Used to pre-process the HAL_UART_ErrorCallback() call to the specific Driver instance.
static void su_txCompleteCallback(UART_HandleTypeDef *huart) noexcept
Used to pre-process the HAL_UART_TxCpltCallback() call to the specific Driver instance.
unsigned m_txSize
Number of bytes requested to be transmitted by the HAL.
Definition StreamDriver.h:184
Used to map a HAL UART Handle to an instance of this class.
Definition StreamDriver.h:156
This abstract class defines the operations that can be performed on a thread.
Definition Thread.h:62
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20