Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
shell_uart.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef SHELL_UART_H__
8#define SHELL_UART_H__
9
10#include <zephyr/shell/shell.h>
12#include <zephyr/sys/atomic.h>
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
20
23 const struct device *dev;
25 void *context;
28#ifdef CONFIG_MCUMGR_TRANSPORT_SHELL
29 struct smp_shell_data smp;
30#endif /* CONFIG_MCUMGR_TRANSPORT_SHELL */
31};
32
33#ifdef CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN
34#define Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _size) \
35 RING_BUF_DECLARE(_name##_tx_ringbuf, _size)
36
37#define Z_UART_SHELL_RX_TIMER_DECLARE(_name) /* Empty */
38#define Z_UART_SHELL_TX_RINGBUF_PTR(_name) (&_name##_tx_ringbuf)
39
40#define Z_UART_SHELL_RX_TIMER_PTR(_name) NULL
41
42#define Z_UART_SHELL_DTR_TIMER_DECLARE(_name) static struct k_timer _name##_dtr_timer
43#define Z_UART_SHELL_DTR_TIMER_PTR(_name) (&_name##_dtr_timer)
44
45#else /* CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN */
46#define Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _size) /* Empty */
47#define Z_UART_SHELL_RX_TIMER_DECLARE(_name) static struct k_timer _name##_timer
48#define Z_UART_SHELL_TX_RINGBUF_PTR(_name) NULL
49#define Z_UART_SHELL_RX_TIMER_PTR(_name) (&_name##_timer)
50#define Z_UART_SHELL_DTR_TIMER_DECLARE(_name) /* Empty */
51#define Z_UART_SHELL_DTR_TIMER_PTR(_name) NULL
52#endif /* CONFIG_SHELL_BACKEND_SERIAL_INTERRUPT_DRIVEN */
53
55struct shell_uart {
57 struct k_timer *timer;
58 struct k_timer *dtr_timer;
61};
62
64#define SHELL_UART_DEFINE(_name, _tx_ringbuf_size, _rx_ringbuf_size) \
65 static struct shell_uart_ctrl_blk _name##_ctrl_blk; \
66 Z_UART_SHELL_RX_TIMER_DECLARE(_name); \
67 Z_UART_SHELL_DTR_TIMER_DECLARE(_name); \
68 Z_UART_SHELL_TX_RINGBUF_DECLARE(_name, _tx_ringbuf_size); \
69 RING_BUF_DECLARE(_name##_rx_ringbuf, _rx_ringbuf_size); \
70 static const struct shell_uart _name##_shell_uart = { \
71 .ctrl_blk = &_name##_ctrl_blk, \
72 .timer = Z_UART_SHELL_RX_TIMER_PTR(_name), \
73 .dtr_timer = Z_UART_SHELL_DTR_TIMER_PTR(_name), \
74 .tx_ringbuf = Z_UART_SHELL_TX_RINGBUF_PTR(_name), \
75 .rx_ringbuf = &_name##_rx_ringbuf, \
76 }; \
77 struct shell_transport _name = { \
78 .api = &shell_uart_transport_api, \
79 .ctx = (struct shell_uart *)&_name##_shell_uart \
80 }
81
91
92#ifdef __cplusplus
93}
94#endif
95
96#endif /* SHELL_UART_H__ */
long atomic_t
Definition: atomic.h:22
void(* shell_transport_handler_t)(enum shell_transport_evt evt, void *context)
Definition: shell.h:590
const struct shell * shell_backend_uart_get_ptr(void)
This function provides pointer to shell uart backend instance.
const struct shell_transport_api shell_uart_transport_api
Shell transport for the mcumgr SMP protocol.
Runtime device structure (in ROM) per driver instance.
Definition: device.h:381
A structure to represent a ring buffer.
Definition: ring_buffer.h:41
Unified shell transport interface.
Definition: shell.h:612
Shell UART transport instance control block (RW data).
Definition: shell_uart.h:22
const struct device * dev
Definition: shell_uart.h:23
shell_transport_handler_t handler
Definition: shell_uart.h:24
bool blocking_tx
Definition: shell_uart.h:27
atomic_t tx_busy
Definition: shell_uart.h:26
void * context
Definition: shell_uart.h:25
Shell UART transport instance structure.
Definition: shell_uart.h:55
struct ring_buf * tx_ringbuf
Definition: shell_uart.h:59
struct k_timer * timer
Definition: shell_uart.h:57
struct shell_uart_ctrl_blk * ctrl_blk
Definition: shell_uart.h:56
struct k_timer * dtr_timer
Definition: shell_uart.h:58
struct ring_buf * rx_ringbuf
Definition: shell_uart.h:60
Shell instance internals.
Definition: shell.h:848
Data used by SMP shell.
Definition: smp_shell.h:23