Zephyr API Documentation  3.6.0
A Scalable Open Source RTOS
3.6.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
uart_async_rx.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2023 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
12#ifndef ZEPHYR_DRIVERS_SERIAL_UART_ASYNC_RX_H_
13#define ZEPHYR_DRIVERS_SERIAL_UART_ASYNC_RX_H_
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19#include <zephyr/kernel.h>
20
21/* @brief RX buffer structure which holds the buffer and its state. */
23 /* Write index which is incremented whenever new data is reported to be
24 * received to that buffer.
25 */
27
28 /* Read index which is incremented whenever data is consumed from the buffer.
29 * Read index cannot be higher than the write index.
30 */
32
33 /* Set to one if buffer is released by the driver. */
35
36 /* Location which is passed to the UART driver. */
38};
39
42 /* Pointer to the configuration structure. Structure must be persistent. */
44
45 /* Total amount of pending bytes. Bytes may be spread across multiple RX buffers. */
47
48 /* Number of buffers which are free. */
50
51 /* Single buffer size. */
53
54 /* Index of the next buffer to be provided to the driver. */
56
57 /* Current buffer to which data is written. */
59
60 /* Current buffer from which data is being consumed. */
62};
63
66 /* Pointer to the buffer. */
68
69 /* Buffer length. */
70 size_t length;
71
72 /* Number of buffers into provided space shall be split. */
74};
75
82static inline uint8_t uart_async_rx_get_buf_len(struct uart_async_rx *async_rx)
83{
84 return async_rx->buf_len;
85}
86
95#define UART_ASYNC_RX_BUF_OVERHEAD offsetof(struct uart_async_rx_buf, buffer)
96
105 const struct uart_async_rx_config *config);
106
114void uart_async_rx_reset(struct uart_async_rx *async_rx);
115
124void uart_async_rx_on_rdy(struct uart_async_rx *async_rx, uint8_t *buffer, size_t length);
125
137
145void uart_async_rx_on_buf_rel(struct uart_async_rx *async_rx, uint8_t *buf);
146
161size_t uart_async_rx_data_claim(struct uart_async_rx *async_rx, uint8_t **data, size_t length);
162
170void uart_async_rx_data_consume(struct uart_async_rx *async_rx, size_t length);
171
172#ifdef __cplusplus
173}
174#endif
175
176#endif /* ZEPHYR_DRIVERS_SERIAL_UART_ASYNC_RX_H_ */
long atomic_t
Definition: atomic_types.h:15
Public kernel APIs.
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
Definition: uart_async_rx.h:22
uint8_t completed
Definition: uart_async_rx.h:34
uint8_t wr_idx
Definition: uart_async_rx.h:26
uint8_t rd_idx
Definition: uart_async_rx.h:31
uint8_t buffer[]
Definition: uart_async_rx.h:37
UART asynchronous RX helper configuration structure.
Definition: uart_async_rx.h:65
uint8_t * buffer
Definition: uart_async_rx.h:67
uint8_t buf_cnt
Definition: uart_async_rx.h:73
size_t length
Definition: uart_async_rx.h:70
UART asynchronous RX helper structure.
Definition: uart_async_rx.h:41
atomic_t pending_bytes
Definition: uart_async_rx.h:46
atomic_t free_buf_cnt
Definition: uart_async_rx.h:49
uint8_t buf_len
Definition: uart_async_rx.h:52
uint8_t wr_buf_idx
Definition: uart_async_rx.h:58
uint8_t rd_buf_idx
Definition: uart_async_rx.h:61
const struct uart_async_rx_config * config
Definition: uart_async_rx.h:43
uint8_t drv_buf_idx
Definition: uart_async_rx.h:55
uint8_t * uart_async_rx_buf_req(struct uart_async_rx *async_rx)
Get next RX buffer.
void uart_async_rx_on_buf_rel(struct uart_async_rx *async_rx, uint8_t *buf)
Indicate that buffer is no longer used by the UART driver.
void uart_async_rx_data_consume(struct uart_async_rx *async_rx, size_t length)
Consume claimed data.
size_t uart_async_rx_data_claim(struct uart_async_rx *async_rx, uint8_t **data, size_t length)
Claim received data for processing.
int uart_async_rx_init(struct uart_async_rx *async_rx, const struct uart_async_rx_config *config)
Initialize the helper instance.
static uint8_t uart_async_rx_get_buf_len(struct uart_async_rx *async_rx)
Get RX buffer length.
Definition: uart_async_rx.h:82
void uart_async_rx_on_rdy(struct uart_async_rx *async_rx, uint8_t *buffer, size_t length)
Indicate received data.
void uart_async_rx_reset(struct uart_async_rx *async_rx)
Reset state of the helper instance.