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.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_H__
8#define SHELL_H__
9
10#include <zephyr/kernel.h>
17#include <zephyr/logging/log.h>
19#include <zephyr/sys/util.h>
20
21#if defined CONFIG_SHELL_GETOPT
22#include <getopt.h>
23#endif
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29#ifndef CONFIG_SHELL_CMD_BUFF_SIZE
30#define CONFIG_SHELL_CMD_BUFF_SIZE 0
31#endif
32
33#ifndef CONFIG_SHELL_PRINTF_BUFF_SIZE
34#define CONFIG_SHELL_PRINTF_BUFF_SIZE 0
35#endif
36
37#ifndef CONFIG_SHELL_HISTORY_BUFFER
38#define CONFIG_SHELL_HISTORY_BUFFER 0
39#endif
40
41#define Z_SHELL_CMD_ROOT_LVL (0u)
42
43#define SHELL_HEXDUMP_BYTES_IN_LINE 16
44
56#define SHELL_OPT_ARG_RAW (0xFE)
57
61#define SHELL_OPT_ARG_CHECK_SKIP (0xFF)
62
67#define SHELL_OPT_ARG_MAX (0xFD)
68
77
89typedef void (*shell_dynamic_get)(size_t idx,
90 struct shell_static_entry *entry);
91
98
101};
102
103struct shell;
104
108};
109
125const struct device *shell_device_lookup(size_t idx,
126 const char *prefix);
127
140typedef int (*shell_cmd_handler)(const struct shell *sh,
141 size_t argc, char **argv);
142
156typedef int (*shell_dict_cmd_handler)(const struct shell *sh, size_t argc,
157 char **argv, void *data);
158
159/* When entries are added to the memory section a padding is applied for
160 * native_posix_64 and x86_64 targets. Adding padding to allow handle data
161 * in the memory section as array.
162 */
163#if (defined(CONFIG_ARCH_POSIX) && defined(CONFIG_64BIT)) || defined(CONFIG_X86_64)
164#define Z_SHELL_STATIC_ENTRY_PADDING 24
165#else
166#define Z_SHELL_STATIC_ENTRY_PADDING 0
167#endif
168
169/*
170 * @brief Shell static command descriptor.
171 */
173 const char *syntax;
174 const char *help;
175 const union shell_cmd_entry *subcmd;
178 uint8_t padding[Z_SHELL_STATIC_ENTRY_PADDING];
179};
180
196#define SHELL_CMD_ARG_REGISTER(syntax, subcmd, help, handler, \
197 mandatory, optional) \
198 static const struct shell_static_entry UTIL_CAT(_shell_, syntax) = \
199 SHELL_CMD_ARG(syntax, subcmd, help, handler, mandatory, optional); \
200 static const TYPE_SECTION_ITERABLE(union shell_cmd_entry, \
201 UTIL_CAT(shell_cmd_, syntax), shell_root_cmds, \
202 UTIL_CAT(shell_cmd_, syntax) \
203 ) = { \
204 .entry = &UTIL_CAT(_shell_, syntax) \
205 }
206
227#define SHELL_COND_CMD_ARG_REGISTER(flag, syntax, subcmd, help, handler, \
228 mandatory, optional) \
229 COND_CODE_1(\
230 flag, \
231 (\
232 SHELL_CMD_ARG_REGISTER(syntax, subcmd, help, handler, \
233 mandatory, optional) \
234 ), \
235 (\
236 static shell_cmd_handler dummy_##syntax##_handler __unused = \
237 handler;\
238 static const union shell_cmd_entry *dummy_subcmd_##syntax \
239 __unused = subcmd\
240 ) \
241 )
253#define SHELL_CMD_REGISTER(syntax, subcmd, help, handler) \
254 SHELL_CMD_ARG_REGISTER(syntax, subcmd, help, handler, 0, 0)
255
269#define SHELL_COND_CMD_REGISTER(flag, syntax, subcmd, help, handler) \
270 SHELL_COND_CMD_ARG_REGISTER(flag, syntax, subcmd, help, handler, 0, 0)
271
290#define SHELL_STATIC_SUBCMD_SET_CREATE(name, ...) \
291 static const struct shell_static_entry shell_##name[] = { \
292 __VA_ARGS__ \
293 }; \
294 static const union shell_cmd_entry name = { \
295 .entry = shell_##name \
296 }
297
298#define Z_SHELL_UNDERSCORE(x) _##x
299#define Z_SHELL_SUBCMD_NAME(...) \
300 UTIL_CAT(shell_subcmds, MACRO_MAP_CAT(Z_SHELL_UNDERSCORE, __VA_ARGS__))
301#define Z_SHELL_SUBCMD_SECTION_TAG(...) MACRO_MAP_CAT(Z_SHELL_UNDERSCORE, __VA_ARGS__)
302#define Z_SHELL_SUBCMD_SET_SECTION_TAG(x) \
303 Z_SHELL_SUBCMD_SECTION_TAG(NUM_VA_ARGS_LESS_1 x, __DEBRACKET x)
304#define Z_SHELL_SUBCMD_ADD_SECTION_TAG(x, y) \
305 Z_SHELL_SUBCMD_SECTION_TAG(NUM_VA_ARGS_LESS_1 x, __DEBRACKET x, y)
306
319#define SHELL_SUBCMD_SET_CREATE(_name, _parent) \
320 static const TYPE_SECTION_ITERABLE(struct shell_static_entry, _name, shell_subcmds, \
321 Z_SHELL_SUBCMD_SET_SECTION_TAG(_parent))
322
323
343#define SHELL_SUBCMD_COND_ADD(_flag, _parent, _syntax, _subcmd, _help, _handler, \
344 _mand, _opt) \
345 COND_CODE_1(_flag, \
346 (static const TYPE_SECTION_ITERABLE(struct shell_static_entry, \
347 Z_SHELL_SUBCMD_NAME(__DEBRACKET _parent, _syntax), \
348 shell_subcmds, \
349 Z_SHELL_SUBCMD_ADD_SECTION_TAG(_parent, _syntax)) = \
350 SHELL_EXPR_CMD_ARG(1, _syntax, _subcmd, _help, \
351 _handler, _mand, _opt)\
352 ), \
353 (static shell_cmd_handler dummy_##syntax##_handler __unused = _handler;\
354 static const union shell_cmd_entry dummy_subcmd_##syntax __unused = { \
355 .entry = (const struct shell_static_entry *)_subcmd\
356 } \
357 ) \
358 )
359
372#define SHELL_SUBCMD_ADD(_parent, _syntax, _subcmd, _help, _handler, _mand, _opt) \
373 SHELL_SUBCMD_COND_ADD(1, _parent, _syntax, _subcmd, _help, _handler, _mand, _opt)
374
379#define SHELL_SUBCMD_SET_END {NULL}
380
387#define SHELL_DYNAMIC_CMD_CREATE(name, get) \
388 static const TYPE_SECTION_ITERABLE(union shell_cmd_entry, name, \
389 shell_dynamic_subcmds, name) = \
390 { \
391 .dynamic_get = get \
392 }
393
407#define SHELL_CMD_ARG(syntax, subcmd, help, handler, mand, opt) \
408 SHELL_EXPR_CMD_ARG(1, syntax, subcmd, help, handler, mand, opt)
409
429#define SHELL_COND_CMD_ARG(flag, syntax, subcmd, help, handler, mand, opt) \
430 SHELL_EXPR_CMD_ARG(IS_ENABLED(flag), syntax, subcmd, help, \
431 handler, mand, opt)
432
452#define SHELL_EXPR_CMD_ARG(_expr, _syntax, _subcmd, _help, _handler, \
453 _mand, _opt) \
454 { \
455 .syntax = (_expr) ? (const char *)STRINGIFY(_syntax) : "", \
456 .help = (_expr) ? (const char *)_help : NULL, \
457 .subcmd = (const union shell_cmd_entry *)((_expr) ? \
458 _subcmd : NULL), \
459 .handler = (shell_cmd_handler)((_expr) ? _handler : NULL), \
460 .args = { .mandatory = _mand, .optional = _opt} \
461 }
462
471#define SHELL_CMD(_syntax, _subcmd, _help, _handler) \
472 SHELL_CMD_ARG(_syntax, _subcmd, _help, _handler, 0, 0)
473
486#define SHELL_COND_CMD(_flag, _syntax, _subcmd, _help, _handler) \
487 SHELL_COND_CMD_ARG(_flag, _syntax, _subcmd, _help, _handler, 0, 0)
488
502#define SHELL_EXPR_CMD(_expr, _syntax, _subcmd, _help, _handler) \
503 SHELL_EXPR_CMD_ARG(_expr, _syntax, _subcmd, _help, _handler, 0, 0)
504
505/* Internal macro used for creating handlers for dictionary commands. */
506#define Z_SHELL_CMD_DICT_HANDLER_CREATE(_data, _handler) \
507static int UTIL_CAT(UTIL_CAT(cmd_dict_, UTIL_CAT(_handler, _)), \
508 GET_ARG_N(1, __DEBRACKET _data))( \
509 const struct shell *sh, size_t argc, char **argv) \
510{ \
511 return _handler(sh, argc, argv, \
512 (void *)GET_ARG_N(2, __DEBRACKET _data)); \
513}
514
515/* Internal macro used for creating dictionary commands. */
516#define SHELL_CMD_DICT_CREATE(_data, _handler) \
517 SHELL_CMD_ARG(GET_ARG_N(1, __DEBRACKET _data), NULL, GET_ARG_N(3, __DEBRACKET _data), \
518 UTIL_CAT(UTIL_CAT(cmd_dict_, UTIL_CAT(_handler, _)), \
519 GET_ARG_N(1, __DEBRACKET _data)), 1, 0)
520
554#define SHELL_SUBCMD_DICT_SET_CREATE(_name, _handler, ...) \
555 FOR_EACH_FIXED_ARG(Z_SHELL_CMD_DICT_HANDLER_CREATE, (), \
556 _handler, __VA_ARGS__) \
557 SHELL_STATIC_SUBCMD_SET_CREATE(_name, \
558 FOR_EACH_FIXED_ARG(SHELL_CMD_DICT_CREATE, (,), _handler, __VA_ARGS__), \
559 SHELL_SUBCMD_SET_END \
560 )
561
572
583
589
591 void *context);
592
593
594typedef void (*shell_uninit_cb_t)(const struct shell *sh, int res);
595
602typedef void (*shell_bypass_cb_t)(const struct shell *sh,
603 uint8_t *data,
604 size_t len);
605
606struct shell_transport;
607
624 int (*init)(const struct shell_transport *transport,
625 const void *config,
626 shell_transport_handler_t evt_handler,
627 void *context);
628
636 int (*uninit)(const struct shell_transport *transport);
637
650 int (*enable)(const struct shell_transport *transport,
651 bool blocking_tx);
652
663 int (*write)(const struct shell_transport *transport,
664 const void *data, size_t length, size_t *cnt);
665
676 int (*read)(const struct shell_transport *transport,
677 void *data, size_t length, size_t *cnt);
678
686 void (*update)(const struct shell_transport *transport);
687
688};
689
692 void *ctx;
693};
694
700};
701
702#ifdef CONFIG_SHELL_STATS
703#define Z_SHELL_STATS_DEFINE(_name) static struct shell_stats _name##_stats
704#define Z_SHELL_STATS_PTR(_name) (&(_name##_stats))
705#else
706#define Z_SHELL_STATS_DEFINE(_name)
707#define Z_SHELL_STATS_PTR(_name) NULL
708#endif /* CONFIG_SHELL_STATS */
709
720};
721
722BUILD_ASSERT((sizeof(struct shell_backend_config_flags) == sizeof(uint32_t)),
723 "Structure must fit in 4 bytes");
724
728#define SHELL_DEFAULT_BACKEND_CONFIG_FLAGS \
729{ \
730 .insert_mode = 0, \
731 .echo = 1, \
732 .obscure = IS_ENABLED(CONFIG_SHELL_START_OBSCURED), \
733 .mode_delete = 1, \
734 .use_colors = 1, \
735 .use_vt100 = 1, \
736};
737
746};
747
748BUILD_ASSERT((sizeof(struct shell_backend_ctx_flags) == sizeof(uint32_t)),
749 "Structure must fit in 4 bytes");
750
757};
758
765};
766
771 SHELL_SIGNAL_TXDONE, /* TXDONE must be last one before SHELL_SIGNALS */
774
778struct shell_ctx {
779 const char *prompt;
786
789
792
797
800
801#if defined CONFIG_SHELL_GETOPT
803 struct getopt_state getopt;
804#endif
805
813
816
819
820 volatile union shell_backend_cfg cfg;
821 volatile union shell_backend_ctx ctx;
822
824
829
833};
834
835extern const struct log_backend_api log_backend_shell_api;
836
842 SHELL_FLAG_OLF_CRLF = (1<<1)
844
848struct shell {
849 const char *default_prompt;
851 const struct shell_transport *iface;
852 struct shell_ctx *ctx;
855
857
859
861
863
865
866 const char *thread_name;
869};
870
871extern void z_shell_print_stream(const void *user_ctx, const char *data,
872 size_t data_len);
886#define SHELL_DEFINE(_name, _prompt, _transport_iface, \
887 _log_queue_size, _log_timeout, _shell_flag) \
888 static const struct shell _name; \
889 static struct shell_ctx UTIL_CAT(_name, _ctx); \
890 static uint8_t _name##_out_buffer[CONFIG_SHELL_PRINTF_BUFF_SIZE]; \
891 Z_SHELL_LOG_BACKEND_DEFINE(_name, _name##_out_buffer, \
892 CONFIG_SHELL_PRINTF_BUFF_SIZE, \
893 _log_queue_size, _log_timeout); \
894 Z_SHELL_HISTORY_DEFINE(_name##_history, CONFIG_SHELL_HISTORY_BUFFER); \
895 Z_SHELL_FPRINTF_DEFINE(_name##_fprintf, &_name, _name##_out_buffer, \
896 CONFIG_SHELL_PRINTF_BUFF_SIZE, \
897 true, z_shell_print_stream); \
898 LOG_INSTANCE_REGISTER(shell, _name, CONFIG_SHELL_LOG_LEVEL); \
899 Z_SHELL_STATS_DEFINE(_name); \
900 static K_KERNEL_STACK_DEFINE(_name##_stack, CONFIG_SHELL_STACK_SIZE); \
901 static struct k_thread _name##_thread; \
902 static const STRUCT_SECTION_ITERABLE(shell, _name) = { \
903 .default_prompt = _prompt, \
904 .iface = _transport_iface, \
905 .ctx = &UTIL_CAT(_name, _ctx), \
906 .history = IS_ENABLED(CONFIG_SHELL_HISTORY) ? \
907 &_name##_history : NULL, \
908 .shell_flag = _shell_flag, \
909 .fprintf_ctx = &_name##_fprintf, \
910 .stats = Z_SHELL_STATS_PTR(_name), \
911 .log_backend = Z_SHELL_LOG_BACKEND_PTR(_name), \
912 LOG_INSTANCE_PTR_INIT(log, shell, _name) \
913 .thread_name = STRINGIFY(_name), \
914 .thread = &_name##_thread, \
915 .stack = _name##_stack \
916 }
917
931int shell_init(const struct shell *sh, const void *transport_config,
932 struct shell_backend_config_flags cfg_flags,
933 bool log_backend, uint32_t init_log_level);
934
941void shell_uninit(const struct shell *sh, shell_uninit_cb_t cb);
942
950int shell_start(const struct shell *sh);
951
959int shell_stop(const struct shell *sh);
960
964#define SHELL_NORMAL SHELL_VT100_COLOR_DEFAULT
965
969#define SHELL_INFO SHELL_VT100_COLOR_GREEN
970
974#define SHELL_OPTION SHELL_VT100_COLOR_CYAN
975
979#define SHELL_WARNING SHELL_VT100_COLOR_YELLOW
980
984#define SHELL_ERROR SHELL_VT100_COLOR_RED
985
997void __printf_like(3, 4) shell_fprintf(const struct shell *sh,
998 enum shell_vt100_color color,
999 const char *fmt, ...);
1000
1013void shell_vfprintf(const struct shell *sh, enum shell_vt100_color color,
1014 const char *fmt, va_list args);
1015
1031void shell_hexdump_line(const struct shell *sh, unsigned int offset,
1032 const uint8_t *data, size_t len);
1033
1041void shell_hexdump(const struct shell *sh, const uint8_t *data, size_t len);
1042
1052#define shell_info(_sh, _ft, ...) \
1053 shell_fprintf(_sh, SHELL_INFO, _ft "\n", ##__VA_ARGS__)
1054
1064#define shell_print(_sh, _ft, ...) \
1065 shell_fprintf(_sh, SHELL_NORMAL, _ft "\n", ##__VA_ARGS__)
1066
1076#define shell_warn(_sh, _ft, ...) \
1077 shell_fprintf(_sh, SHELL_WARNING, _ft "\n", ##__VA_ARGS__)
1078
1088#define shell_error(_sh, _ft, ...) \
1089 shell_fprintf(_sh, SHELL_ERROR, _ft "\n", ##__VA_ARGS__)
1090
1097void shell_process(const struct shell *sh);
1098
1108int shell_prompt_change(const struct shell *sh, const char *prompt);
1109
1118void shell_help(const struct shell *sh);
1119
1121#define SHELL_CMD_HELP_PRINTED (1)
1122
1140int shell_execute_cmd(const struct shell *sh, const char *cmd);
1141
1153int shell_set_root_cmd(const char *cmd);
1154
1163void shell_set_bypass(const struct shell *sh, shell_bypass_cb_t bypass);
1164
1172bool shell_ready(const struct shell *sh);
1173
1184int shell_insert_mode_set(const struct shell *sh, bool val);
1185
1197int shell_use_colors_set(const struct shell *sh, bool val);
1198
1209int shell_use_vt100_set(const struct shell *sh, bool val);
1210
1221int shell_echo_set(const struct shell *sh, bool val);
1222
1234int shell_obscure_set(const struct shell *sh, bool obscure);
1235
1247int shell_mode_delete_set(const struct shell *sh, bool val);
1248
1256int shell_get_return_value(const struct shell *sh);
1257
1262#ifdef __cplusplus
1263}
1264#endif
1265
1266#endif /* SHELL_H__ */
struct z_thread_stack_element k_thread_stack_t
Typedef of struct z_thread_stack_element.
Definition: arch_interface.h:44
long atomic_t
Definition: atomic.h:22
static void cmd(uint32_t command)
Execute a display list command by co-processor engine.
Definition: ft8xx_reference_api.h:153
void shell_uninit(const struct shell *sh, shell_uninit_cb_t cb)
Uninitializes the transport layer and the internal shell state.
void(* shell_uninit_cb_t)(const struct shell *sh, int res)
Definition: shell.h:594
void shell_hexdump_line(const struct shell *sh, unsigned int offset, const uint8_t *data, size_t len)
Print a line of data in hexadecimal format.
int(* shell_dict_cmd_handler)(const struct shell *sh, size_t argc, char **argv, void *data)
Shell dictionary command handler prototype.
Definition: shell.h:156
int shell_prompt_change(const struct shell *sh, const char *prompt)
Change displayed shell prompt.
void(* shell_transport_handler_t)(enum shell_transport_evt evt, void *context)
Definition: shell.h:590
int shell_mode_delete_set(const struct shell *sh, bool val)
Allow application to control whether the delete key backspaces or deletes.
int(* shell_cmd_handler)(const struct shell *sh, size_t argc, char **argv)
Shell command handler prototype.
Definition: shell.h:140
int shell_get_return_value(const struct shell *sh)
Retrieve return value of most recently executed shell command.
shell_flag
Flags for setting shell output newline sequence.
Definition: shell.h:840
const struct device * shell_device_lookup(size_t idx, const char *prefix)
Get by index a device that matches .
shell_signal
Definition: shell.h:767
void shell_vfprintf(const struct shell *sh, enum shell_vt100_color color, const char *fmt, va_list args)
vprintf-like function which sends formatted data stream to the shell.
void shell_set_bypass(const struct shell *sh, shell_bypass_cb_t bypass)
Set bypass callback.
int shell_set_root_cmd(const char *cmd)
Set root command for all shell instances.
bool shell_ready(const struct shell *sh)
Get shell readiness to execute commands.
int shell_use_colors_set(const struct shell *sh, bool val)
Allow application to control whether terminal output uses colored syntax.
void shell_process(const struct shell *sh)
Process function, which should be executed when data is ready in the transport interface.
int shell_use_vt100_set(const struct shell *sh, bool val)
Allow application to control whether terminal is using vt100 commands.
int shell_obscure_set(const struct shell *sh, bool obscure)
Allow application to control whether user input is obscured with asterisks – useful for implementing ...
int shell_init(const struct shell *sh, const void *transport_config, struct shell_backend_config_flags cfg_flags, bool log_backend, uint32_t init_log_level)
Function for initializing a transport layer and internal shell state.
shell_receive_state
Definition: shell.h:566
void(* shell_bypass_cb_t)(const struct shell *sh, uint8_t *data, size_t len)
Bypass callback.
Definition: shell.h:602
int shell_execute_cmd(const struct shell *sh, const char *cmd)
Execute command.
void shell_help(const struct shell *sh)
Prints the current command help.
int shell_stop(const struct shell *sh)
Function for stopping shell processing.
int shell_start(const struct shell *sh)
Function for starting shell processing.
int shell_echo_set(const struct shell *sh, bool val)
Allow application to control whether user input is echoed back.
const struct log_backend_api log_backend_shell_api
shell_transport_evt
Shell transport event.
Definition: shell.h:585
void shell_hexdump(const struct shell *sh, const uint8_t *data, size_t len)
Print data in hexadecimal format.
int shell_insert_mode_set(const struct shell *sh, bool val)
Allow application to control text insert mode.
shell_state
Definition: shell.h:576
void(* shell_dynamic_get)(size_t idx, struct shell_static_entry *entry)
Shell dynamic command descriptor.
Definition: shell.h:89
@ SHELL_FLAG_CRLF_DEFAULT
Do not map CR or LF.
Definition: shell.h:841
@ SHELL_FLAG_OLF_CRLF
Map LF to CRLF on output.
Definition: shell.h:842
@ SHELL_SIGNALS
Definition: shell.h:772
@ SHELL_SIGNAL_TXDONE
Definition: shell.h:771
@ SHELL_SIGNAL_RXRDY
Definition: shell.h:768
@ SHELL_SIGNAL_LOG_MSG
Definition: shell.h:769
@ SHELL_SIGNAL_KILL
Definition: shell.h:770
@ SHELL_RECEIVE_DEFAULT
Definition: shell.h:567
@ SHELL_RECEIVE_ESC_SEQ
Definition: shell.h:569
@ SHELL_RECEIVE_ESC
Definition: shell.h:568
@ SHELL_RECEIVE_TILDE_EXP
Definition: shell.h:570
@ SHELL_TRANSPORT_EVT_TX_RDY
Definition: shell.h:587
@ SHELL_TRANSPORT_EVT_RX_RDY
Definition: shell.h:586
@ SHELL_STATE_UNINITIALIZED
Definition: shell.h:577
@ SHELL_STATE_PANIC_MODE_INACTIVE
Panic requested, not supported.
Definition: shell.h:581
@ SHELL_STATE_ACTIVE
Definition: shell.h:579
@ SHELL_STATE_PANIC_MODE_ACTIVE
Panic activated.
Definition: shell.h:580
@ SHELL_STATE_INITIALIZED
Definition: shell.h:578
Public kernel APIs.
flags
Definition: parser.h:96
#define CONFIG_SHELL_CMD_BUFF_SIZE
Definition: shell.h:30
#define CONFIG_SHELL_PRINTF_BUFF_SIZE
Definition: shell.h:34
shell_vt100_color
Definition: shell_types.h:14
__UINT32_TYPE__ uint32_t
Definition: stdint.h:90
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
__UINT16_TYPE__ uint16_t
Definition: stdint.h:89
Runtime device structure (in ROM) per driver instance.
Definition: device.h:381
Mutex Structure.
Definition: kernel.h:2911
Poll Event.
Definition: kernel.h:5651
Definition: kernel.h:5627
Thread Structure.
Definition: thread.h:250
Logger backend API.
Definition: log_backend.h:63
Logger backend structure.
Definition: log_backend.h:94
Definition: shell.h:713
uint32_t use_vt100
Controls VT100 commands usage in shell.
Definition: shell.h:719
uint32_t mode_delete
Operation mode of backspace key.
Definition: shell.h:717
uint32_t echo
Controls shell echo.
Definition: shell.h:715
uint32_t insert_mode
Controls insert mode for text introduction.
Definition: shell.h:714
uint32_t obscure
If echo on, print asterisk instead.
Definition: shell.h:716
uint32_t use_colors
Controls colored syntax.
Definition: shell.h:718
Definition: shell.h:738
uint32_t print_noinit
Print request from not initialized shell.
Definition: shell.h:744
uint32_t sync_mode
Shell in synchronous mode.
Definition: shell.h:745
uint32_t tx_rdy
Definition: shell.h:740
uint32_t processing
Shell is executing process function.
Definition: shell.h:739
uint32_t last_nl
Last received new line character.
Definition: shell.h:742
uint32_t history_exit
Request to exit history mode.
Definition: shell.h:741
uint32_t cmd_ctx
Shell is executing command.
Definition: shell.h:743
Shell instance context.
Definition: shell.h:778
const struct shell_static_entry * selected_cmd
New root command.
Definition: shell.h:788
shell_uninit_cb_t uninit_cb
Callback called from shell thread context when unitialization is completed just before aborting shell...
Definition: shell.h:796
struct shell_vt100_ctx vt100_ctx
VT100 color and cursor position, terminal width.
Definition: shell.h:791
const char * prompt
shell current prompt.
Definition: shell.h:779
k_tid_t tid
Definition: shell.h:831
char temp_buff[0]
Command temporary buffer.
Definition: shell.h:815
char cmd_buff[0]
Command input buffer.
Definition: shell.h:812
struct shell_static_entry active_cmd
Currently executed command.
Definition: shell.h:785
volatile union shell_backend_cfg cfg
Definition: shell.h:820
uint16_t cmd_tmp_buff_len
Command length in tmp buffer.
Definition: shell.h:809
struct k_poll_signal signals[SHELL_SIGNALS]
Definition: shell.h:823
enum shell_state state
Internal module state.
Definition: shell.h:781
struct k_mutex wr_mtx
Definition: shell.h:830
shell_bypass_cb_t bypass
When bypass is set, all incoming data is passed to the callback.
Definition: shell.h:799
uint16_t cmd_buff_len
Command length.
Definition: shell.h:806
uint16_t cmd_buff_pos
Command buffer cursor position.
Definition: shell.h:807
int ret_val
Definition: shell.h:832
char printf_buff[0]
Printf buffer size.
Definition: shell.h:818
struct k_poll_event events[SHELL_SIGNALS]
Events that should be used only internally by shell thread.
Definition: shell.h:828
enum shell_receive_state receive_state
Escape sequence indicator.
Definition: shell.h:782
volatile union shell_backend_ctx ctx
Definition: shell.h:821
fprintf context
Definition: shell_fprintf.h:29
Definition: shell_history.h:21
Shell log backend instance structure (RO data).
Definition: shell_log_backend.h:36
Definition: shell.h:105
uint8_t mandatory
Number of mandatory arguments.
Definition: shell.h:106
uint8_t optional
Number of optional arguments.
Definition: shell.h:107
Definition: shell.h:172
const union shell_cmd_entry * subcmd
Pointer to subcommand.
Definition: shell.h:175
uint8_t padding[0]
Definition: shell.h:178
shell_cmd_handler handler
Command handler.
Definition: shell.h:176
struct shell_static_args args
Command arguments.
Definition: shell.h:177
const char * help
Command help string.
Definition: shell.h:174
const char * syntax
Command syntax strings.
Definition: shell.h:173
Shell statistics structure.
Definition: shell.h:698
atomic_t log_lost_cnt
Lost log counter.
Definition: shell.h:699
Unified shell transport interface.
Definition: shell.h:612
void(* update)(const struct shell_transport *transport)
Function called in shell thread loop.
Definition: shell.h:686
int(* init)(const struct shell_transport *transport, const void *config, shell_transport_handler_t evt_handler, void *context)
Function for initializing the shell transport interface.
Definition: shell.h:624
int(* write)(const struct shell_transport *transport, const void *data, size_t length, size_t *cnt)
Function for writing data to the transport interface.
Definition: shell.h:663
int(* uninit)(const struct shell_transport *transport)
Function for uninitializing the shell transport interface.
Definition: shell.h:636
int(* enable)(const struct shell_transport *transport, bool blocking_tx)
Function for enabling transport in given TX mode.
Definition: shell.h:650
int(* read)(const struct shell_transport *transport, void *data, size_t length, size_t *cnt)
Function for reading data from the transport interface.
Definition: shell.h:676
Definition: shell.h:690
void * ctx
Definition: shell.h:692
const struct shell_transport_api * api
Definition: shell.h:691
Definition: shell_types.h:44
Shell instance internals.
Definition: shell.h:848
struct k_thread * thread
Definition: shell.h:867
const char * thread_name
Definition: shell.h:866
LOG_INSTANCE_PTR_DECLARE(log)
enum shell_flag shell_flag
Definition: shell.h:856
const struct shell_log_backend * log_backend
Definition: shell.h:862
struct shell_history * history
Definition: shell.h:854
struct shell_stats * stats
Definition: shell.h:860
const char * default_prompt
shell default prompt.
Definition: shell.h:849
const struct shell_fprintf * fprintf_ctx
Definition: shell.h:858
struct shell_ctx * ctx
Internal context.
Definition: shell.h:852
const struct shell_transport * iface
Transport interface.
Definition: shell.h:851
k_thread_stack_t * stack
Definition: shell.h:868
Definition: shell.h:754
atomic_t value
Definition: shell.h:755
Definition: shell.h:762
uint32_t value
Definition: shell.h:763
Shell command descriptor.
Definition: shell.h:95
const struct shell_static_entry * entry
Pointer to array of static commands.
Definition: shell.h:100
shell_dynamic_get dynamic_get
Pointer to function returning dynamic commands.
Definition: shell.h:97
Misc utilities.