Zephyr API Documentation 4.0.0-rc2
A Scalable Open Source RTOS
|
WEBSOCKET-based shell transport. More...
#include <shell_websocket.h>
Data Fields | |
shell_transport_handler_t | shell_handler |
Handler function registered by shell. | |
void * | shell_context |
Context registered by shell. | |
struct shell_websocket_line_buf | line_out |
Buffer for outgoing line. | |
struct zsock_pollfd | fds [1] |
Array for sockets used by the websocket service. | |
uint8_t | rx_buf [CONFIG_SHELL_CMD_BUFF_SIZE] |
Input buffer. | |
size_t | rx_len |
Number of data bytes within the input buffer. | |
struct k_mutex | rx_lock |
Mutex protecting the input buffer access. | |
struct k_work_delayable | send_work |
The delayed work is used to send non-lf terminated output that has been around for "too long". | |
struct k_work_sync | work_sync |
bool | output_lock |
If set, no output is sent to the WEBSOCKET client. | |
WEBSOCKET-based shell transport.
struct zsock_pollfd shell_websocket::fds[1] |
Array for sockets used by the websocket service.
struct shell_websocket_line_buf shell_websocket::line_out |
Buffer for outgoing line.
bool shell_websocket::output_lock |
If set, no output is sent to the WEBSOCKET client.
uint8_t shell_websocket::rx_buf[CONFIG_SHELL_CMD_BUFF_SIZE] |
Input buffer.
size_t shell_websocket::rx_len |
Number of data bytes within the input buffer.
struct k_mutex shell_websocket::rx_lock |
Mutex protecting the input buffer access.
struct k_work_delayable shell_websocket::send_work |
The delayed work is used to send non-lf terminated output that has been around for "too long".
This will prove to be useful to send the shell prompt for instance.
void* shell_websocket::shell_context |
Context registered by shell.
shell_transport_handler_t shell_websocket::shell_handler |
Handler function registered by shell.
struct k_work_sync shell_websocket::work_sync |