17#ifndef ZEPHYR_MODEM_BACKEND_UART_
18#define ZEPHYR_MODEM_BACKEND_UART_
51 struct modem_stats_buffer receive_buf_stats;
52 struct modem_stats_buffer transmit_buf_stats;
long atomic_t
Definition atomic_types.h:15
Public APIs for UART drivers.
struct modem_pipe * modem_backend_uart_init(struct modem_backend_uart *backend, const struct modem_backend_uart_config *config)
__UINT32_TYPE__ uint32_t
Definition stdint.h:90
__UINT8_TYPE__ uint8_t
Definition stdint.h:88
Runtime device structure (in ROM) per driver instance.
Definition device.h:403
Kernel Spin Lock.
Definition spinlock.h:45
A structure used to submit work after a delay.
Definition kernel.h:3985
A structure used to submit work.
Definition kernel.h:3957
uint32_t transmit_buf_size
Definition uart.h:39
uint32_t receive_buf_size
Definition uart.h:35
uint8_t * receive_bufs[2]
Definition uart.h:34
struct k_spinlock receive_rb_lock
Definition uart.h:37
struct k_work rx_disabled_work
Definition uart.h:40
atomic_t state
Definition uart.h:41
struct ring_buf receive_rb
Definition uart.h:36
uint8_t * transmit_buf
Definition uart.h:38
uint32_t receive_buf_size
Definition uart.h:64
uint32_t transmit_buf_size
Definition uart.h:66
const struct device * uart
Definition uart.h:62
uint8_t * transmit_buf
Definition uart.h:65
uint8_t * receive_buf
Definition uart.h:63
atomic_t receive_buf_len
Definition uart.h:28
uint32_t transmit_buf_put_limit
Definition uart.h:30
atomic_t transmit_buf_len
Definition uart.h:27
struct ring_buf transmit_rb
Definition uart.h:26
uint8_t receive_rdb_used
Definition uart.h:29
struct ring_buf receive_rdb[2]
Definition uart.h:25
const struct device * uart
Definition uart.h:45
struct k_work_delayable receive_ready_work
Definition uart.h:47
struct k_work transmit_idle_work
Definition uart.h:48
struct modem_pipe pipe
Definition uart.h:46
A structure to represent a ring buffer.
Definition ring_buffer.h:41