Go to the documentation of this file.
39 #ifndef _STM32_UART_H_
40 #define _STM32_UART_H_
enum no_os_uart_parity parity
Definition: no_os_uart.h:115
void lf256fifo_remove(struct lf256fifo *fifo)
@ NO_OS_EVT_UART_RX_COMPLETE
Definition: no_os_irq.h:70
void uart_rx_callback(void *context)
Definition: stm32_uart.c:50
void * extra
Definition: no_os_uart.h:119
Structure describing a callback to be registered.
Definition: no_os_irq.h:136
@ NO_OS_UART_STOP_1_BIT
Definition: no_os_uart.h:94
Header file of IRQ interface.
int32_t no_os_irq_register_callback(struct no_os_irq_ctrl_desc *desc, uint32_t irq_id, struct no_os_callback_desc *callback_desc)
Register a callback to handle the irq events.
Definition: no_os_irq.c:82
int lf256fifo_init(struct lf256fifo **)
enum no_os_uart_size size
Definition: no_os_uart.h:113
int32_t no_os_uart_remove(struct no_os_uart_desc *desc)
Free the resources allocated by no_os_uart_init().
Definition: stm32_uart.c:186
uint32_t irq_id
Definition: no_os_uart.h:107
UART_HandleTypeDef * huart
Definition: stm32_uart.h:65
uint32_t timeout
Definition: stm32_uart.h:67
struct no_os_irq_ctrl_desc * nvic
Definition: stm32_uart.h:69
enum no_os_irq_peripheral peripheral
Definition: no_os_irq.h:154
Specific initialization parameters for stm32 UART.
Definition: stm32_uart.h:52
int lf256fifo_read(struct lf256fifo *, uint8_t *)
int32_t no_os_uart_init(struct no_os_uart_desc **desc, struct no_os_uart_init_param *param)
Initialize the UART communication peripheral.
Definition: stm32_uart.c:63
Stucture holding the UART descriptor.
Definition: no_os_uart.h:126
bool asynchronous_rx
Definition: no_os_uart.h:109
Header file of UART driver for STM32.
void * extra
Definition: no_os_uart.h:136
Header file for stm32 irq specifics.
void * ctx
Definition: no_os_irq.h:148
stm32 platform specific UART descriptor
Definition: stm32_uart.h:63
int32_t no_os_irq_unregister_callback(struct no_os_irq_ctrl_desc *desc, uint32_t irq_id, struct no_os_callback_desc *callback_desc)
Unregisters a generic IRQ handling function.
Definition: no_os_irq.c:96
const struct no_os_irq_platform_ops * platform_ops
Definition: no_os_irq.h:107
struct lf256fifo * rx_fifo
Definition: no_os_uart.h:132
uint32_t timeout
Definition: stm32_uart.h:56
int lf256fifo_write(struct lf256fifo *, uint8_t)
const struct no_os_irq_platform_ops stm32_irq_ops
stm32 specific IRQ platform ops structure
Definition: stm32_irq.c:429
int32_t no_os_irq_ctrl_init(struct no_os_irq_ctrl_desc **desc, const struct no_os_irq_init_param *param)
Initialize the IRQ interrupts.
Definition: no_os_irq.c:51
void * handle
Definition: no_os_irq.h:156
void(* callback)(void *context)
Definition: no_os_irq.h:138
uint32_t baud_rate
Definition: no_os_uart.h:111
enum no_os_uart_stop stop
Definition: no_os_uart.h:117
@ NO_OS_UART_CS_9
Definition: no_os_uart.h:68
enum no_os_irq_event event
Definition: no_os_irq.h:152
@ NO_OS_UART_PAR_EVEN
Definition: no_os_uart.h:85
SPSC lock-free fifo of fixed size (256), specialized for UART.
uint32_t irq_id
Definition: no_os_uart.h:130
#define NULL
Definition: wrapper.h:64
Structure holding the parameters for UART initialization.
Definition: no_os_uart.h:103
UART_HandleTypeDef * huart
Definition: stm32_uart.h:54
Structure holding the initial parameters for Interrupt Request.
Definition: no_os_irq.h:103
@ NO_OS_UART_PAR_NO
Definition: no_os_uart.h:77
@ NO_OS_UART_IRQ
Definition: no_os_irq.h:87
int32_t no_os_uart_write(struct no_os_uart_desc *desc, const uint8_t *data, uint32_t bytes_number)
Write data to UART device.
Definition: stm32_uart.c:215
int32_t no_os_irq_ctrl_remove(struct no_os_irq_ctrl_desc *desc)
Free the resources allocated by no_os_irq_ctrl_init().
Definition: no_os_irq.c:70
int32_t no_os_uart_read(struct no_os_uart_desc *desc, uint8_t *data, uint32_t bytes_number)
Read data from UART device.
Definition: stm32_uart.c:252
int32_t no_os_irq_enable(struct no_os_irq_ctrl_desc *desc, uint32_t irq_id)
Enable specific interrupt.
Definition: no_os_irq.c:144
@ NO_OS_UART_PAR_ODD
Definition: no_os_uart.h:83
Header file of UART interface.
int32_t no_os_irq_disable(struct no_os_irq_ctrl_desc *desc, uint32_t irq_id)
Disable specific interrupt.
Definition: no_os_irq.c:155
Definition: no_os_irq.h:119
struct no_os_callback_desc rx_callback
Definition: stm32_uart.h:71
@ NO_OS_UART_CS_8
Definition: no_os_uart.h:66
Error macro definition for ARM Compiler.