esp_console.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. /*
  2. * SPDX-FileCopyrightText: 2016-2021 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. #include <stddef.h>
  11. #include "sdkconfig.h"
  12. #include "esp_err.h"
  13. // Forward declaration. Definition in linenoise/linenoise.h.
  14. typedef struct linenoiseCompletions linenoiseCompletions;
  15. /**
  16. * @brief Parameters for console initialization
  17. */
  18. typedef struct {
  19. size_t max_cmdline_length; //!< length of command line buffer, in bytes
  20. size_t max_cmdline_args; //!< maximum number of command line arguments to parse
  21. int hint_color; //!< ASCII color code of hint text
  22. int hint_bold; //!< Set to 1 to print hint text in bold
  23. } esp_console_config_t;
  24. /**
  25. * @brief Default console configuration value
  26. *
  27. */
  28. #define ESP_CONSOLE_CONFIG_DEFAULT() \
  29. { \
  30. .max_cmdline_length = 256, \
  31. .max_cmdline_args = 32, \
  32. .hint_color = 39, \
  33. .hint_bold = 0 \
  34. }
  35. /**
  36. * @brief Parameters for console REPL (Read Eval Print Loop)
  37. *
  38. */
  39. typedef struct {
  40. uint32_t max_history_len; //!< maximum length for the history
  41. const char *history_save_path; //!< file path used to save history commands, set to NULL won't save to file system
  42. uint32_t task_stack_size; //!< repl task stack size
  43. uint32_t task_priority; //!< repl task priority
  44. const char *prompt; //!< prompt (NULL represents default: "esp> ")
  45. } esp_console_repl_config_t;
  46. /**
  47. * @brief Default console repl configuration value
  48. *
  49. */
  50. #define ESP_CONSOLE_REPL_CONFIG_DEFAULT() \
  51. { \
  52. .max_history_len = 32, \
  53. .history_save_path = NULL, \
  54. .task_stack_size = 4096, \
  55. .task_priority = 2, \
  56. .prompt = NULL, \
  57. }
  58. /**
  59. * @brief Parameters for console device: UART
  60. *
  61. */
  62. typedef struct {
  63. int channel; //!< UART channel number (count from zero)
  64. int baud_rate; //!< Comunication baud rate
  65. int tx_gpio_num; //!< GPIO number for TX path, -1 means using default one
  66. int rx_gpio_num; //!< GPIO number for RX path, -1 means using default one
  67. } esp_console_dev_uart_config_t;
  68. #ifdef CONFIG_ESP_CONSOLE_UART_CUSTOM
  69. #define ESP_CONSOLE_DEV_UART_CONFIG_DEFAULT() \
  70. { \
  71. .channel = CONFIG_ESP_CONSOLE_UART_NUM, \
  72. .baud_rate = CONFIG_ESP_CONSOLE_UART_BAUDRATE, \
  73. .tx_gpio_num = CONFIG_ESP_CONSOLE_UART_TX_GPIO, \
  74. .rx_gpio_num = CONFIG_ESP_CONSOLE_UART_RX_GPIO, \
  75. }
  76. #else
  77. #define ESP_CONSOLE_DEV_UART_CONFIG_DEFAULT() \
  78. { \
  79. .channel = CONFIG_ESP_CONSOLE_UART_NUM, \
  80. .baud_rate = CONFIG_ESP_CONSOLE_UART_BAUDRATE, \
  81. .tx_gpio_num = -1, \
  82. .rx_gpio_num = -1, \
  83. }
  84. #endif
  85. /**
  86. * @brief Parameters for console device: USB CDC
  87. *
  88. * @note It's an empty structure for now, reserved for future
  89. *
  90. */
  91. typedef struct {
  92. } esp_console_dev_usb_cdc_config_t;
  93. #define ESP_CONSOLE_DEV_CDC_CONFIG_DEFAULT() \
  94. { \
  95. }
  96. /**
  97. * @brief initialize console module
  98. * @param config console configuration
  99. * @note Call this once before using other console module features
  100. * @return
  101. * - ESP_OK on success
  102. * - ESP_ERR_NO_MEM if out of memory
  103. * - ESP_ERR_INVALID_STATE if already initialized
  104. * - ESP_ERR_INVALID_ARG if the configuration is invalid
  105. */
  106. esp_err_t esp_console_init(const esp_console_config_t *config);
  107. /**
  108. * @brief de-initialize console module
  109. * @note Call this once when done using console module functions
  110. * @return
  111. * - ESP_OK on success
  112. * - ESP_ERR_INVALID_STATE if not initialized yet
  113. */
  114. esp_err_t esp_console_deinit(void);
  115. /**
  116. * @brief Console command main function
  117. * @param argc number of arguments
  118. * @param argv array with argc entries, each pointing to a zero-terminated string argument
  119. * @return console command return code, 0 indicates "success"
  120. */
  121. typedef int (*esp_console_cmd_func_t)(int argc, char **argv);
  122. /**
  123. * @brief Console command description
  124. */
  125. typedef struct {
  126. /**
  127. * Command name. Must not be NULL, must not contain spaces.
  128. * The pointer must be valid until the call to esp_console_deinit.
  129. */
  130. const char *command;
  131. /**
  132. * Help text for the command, shown by help command.
  133. * If set, the pointer must be valid until the call to esp_console_deinit.
  134. * If not set, the command will not be listed in 'help' output.
  135. */
  136. const char *help;
  137. /**
  138. * Hint text, usually lists possible arguments.
  139. * If set to NULL, and 'argtable' field is non-NULL, hint will be generated
  140. * automatically
  141. */
  142. const char *hint;
  143. /**
  144. * Pointer to a function which implements the command.
  145. */
  146. esp_console_cmd_func_t func;
  147. /**
  148. * Array or structure of pointers to arg_xxx structures, may be NULL.
  149. * Used to generate hint text if 'hint' is set to NULL.
  150. * Array/structure which this field points to must end with an arg_end.
  151. * Only used for the duration of esp_console_cmd_register call.
  152. */
  153. void *argtable;
  154. } esp_console_cmd_t;
  155. /**
  156. * @brief Register console command
  157. * @param cmd pointer to the command description; can point to a temporary value
  158. * @return
  159. * - ESP_OK on success
  160. * - ESP_ERR_NO_MEM if out of memory
  161. * - ESP_ERR_INVALID_ARG if command description includes invalid arguments
  162. */
  163. esp_err_t esp_console_cmd_register(const esp_console_cmd_t *cmd);
  164. /**
  165. * @brief Run command line
  166. * @param cmdline command line (command name followed by a number of arguments)
  167. * @param[out] cmd_ret return code from the command (set if command was run)
  168. * @return
  169. * - ESP_OK, if command was run
  170. * - ESP_ERR_INVALID_ARG, if the command line is empty, or only contained
  171. * whitespace
  172. * - ESP_ERR_NOT_FOUND, if command with given name wasn't registered
  173. * - ESP_ERR_INVALID_STATE, if esp_console_init wasn't called
  174. */
  175. esp_err_t esp_console_run(const char *cmdline, int *cmd_ret);
  176. /**
  177. * @brief Split command line into arguments in place
  178. * @verbatim
  179. * - This function finds whitespace-separated arguments in the given input line.
  180. *
  181. * 'abc def 1 20 .3' -> [ 'abc', 'def', '1', '20', '.3' ]
  182. *
  183. * - Argument which include spaces may be surrounded with quotes. In this case
  184. * spaces are preserved and quotes are stripped.
  185. *
  186. * 'abc "123 456" def' -> [ 'abc', '123 456', 'def' ]
  187. *
  188. * - Escape sequences may be used to produce backslash, double quote, and space:
  189. *
  190. * 'a\ b\\c\"' -> [ 'a b\c"' ]
  191. * @endverbatim
  192. * @note Pointers to at most argv_size - 1 arguments are returned in argv array.
  193. * The pointer after the last one (i.e. argv[argc]) is set to NULL.
  194. *
  195. * @param line pointer to buffer to parse; it is modified in place
  196. * @param argv array where the pointers to arguments are written
  197. * @param argv_size number of elements in argv_array (max. number of arguments)
  198. * @return number of arguments found (argc)
  199. */
  200. size_t esp_console_split_argv(char *line, char **argv, size_t argv_size);
  201. /**
  202. * @brief Callback which provides command completion for linenoise library
  203. *
  204. * When using linenoise for line editing, command completion support
  205. * can be enabled like this:
  206. *
  207. * linenoiseSetCompletionCallback(&esp_console_get_completion);
  208. *
  209. * @param buf the string typed by the user
  210. * @param lc linenoiseCompletions to be filled in
  211. */
  212. void esp_console_get_completion(const char *buf, linenoiseCompletions *lc);
  213. /**
  214. * @brief Callback which provides command hints for linenoise library
  215. *
  216. * When using linenoise for line editing, hints support can be enabled as
  217. * follows:
  218. *
  219. * linenoiseSetHintsCallback((linenoiseHintsCallback*) &esp_console_get_hint);
  220. *
  221. * The extra cast is needed because linenoiseHintsCallback is defined as
  222. * returning a char* instead of const char*.
  223. *
  224. * @param buf line typed by the user
  225. * @param[out] color ANSI color code to be used when displaying the hint
  226. * @param[out] bold set to 1 if hint has to be displayed in bold
  227. * @return string containing the hint text. This string is persistent and should
  228. * not be freed (i.e. linenoiseSetFreeHintsCallback should not be used).
  229. */
  230. const char *esp_console_get_hint(const char *buf, int *color, int *bold);
  231. /**
  232. * @brief Register a 'help' command
  233. *
  234. * Default 'help' command prints the list of registered commands along with
  235. * hints and help strings.
  236. *
  237. * @return
  238. * - ESP_OK on success
  239. * - ESP_ERR_INVALID_STATE, if esp_console_init wasn't called
  240. */
  241. esp_err_t esp_console_register_help_command(void);
  242. /******************************************************************************
  243. * Console REPL
  244. ******************************************************************************/
  245. /**
  246. * @brief Type defined for console REPL
  247. *
  248. */
  249. typedef struct esp_console_repl_s esp_console_repl_t;
  250. /**
  251. * @brief Console REPL base structure
  252. *
  253. */
  254. struct esp_console_repl_s {
  255. /**
  256. * @brief Delete console REPL environment
  257. * @param[in] repl REPL handle returned from esp_console_new_repl_xxx
  258. * @return
  259. * - ESP_OK on success
  260. * - ESP_FAIL on errors
  261. */
  262. esp_err_t (*del)(esp_console_repl_t *repl);
  263. };
  264. /**
  265. * @brief Establish a console REPL environment over UART driver
  266. *
  267. * @param[in] dev_config UART device configuration
  268. * @param[in] repl_config REPL configuration
  269. * @param[out] ret_repl return REPL handle after initialization succeed, return NULL otherwise
  270. *
  271. * @note This is a all-in-one function to establish the environment needed for REPL, includes:
  272. * - Install the UART driver on the console UART (8n1, 115200, REF_TICK clock source)
  273. * - Configures the stdin/stdout to go through the UART driver
  274. * - Initializes linenoise
  275. * - Spawn new thread to run REPL in the background
  276. *
  277. * @attention This function is meant to be used in the examples to make the code more compact.
  278. * Applications which use console functionality should be based on
  279. * the underlying linenoise and esp_console functions.
  280. *
  281. * @return
  282. * - ESP_OK on success
  283. * - ESP_FAIL Parameter error
  284. */
  285. esp_err_t esp_console_new_repl_uart(const esp_console_dev_uart_config_t *dev_config, const esp_console_repl_config_t *repl_config, esp_console_repl_t **ret_repl);
  286. /**
  287. * @brief Establish a console REPL environment over USB CDC
  288. *
  289. * @param[in] dev_config USB CDC configuration
  290. * @param[in] repl_config REPL configuration
  291. * @param[out] ret_repl return REPL handle after initialization succeed, return NULL otherwise
  292. *
  293. * @note This is a all-in-one function to establish the environment needed for REPL, includes:
  294. * - Initializes linenoise
  295. * - Spawn new thread to run REPL in the background
  296. *
  297. * @attention This function is meant to be used in the examples to make the code more compact.
  298. * Applications which use console functionality should be based on
  299. * the underlying linenoise and esp_console functions.
  300. *
  301. * @return
  302. * - ESP_OK on success
  303. * - ESP_FAIL Parameter error
  304. */
  305. esp_err_t esp_console_new_repl_usb_cdc(const esp_console_dev_usb_cdc_config_t *dev_config, const esp_console_repl_config_t *repl_config, esp_console_repl_t **ret_repl);
  306. /**
  307. * @brief Start REPL environment
  308. * @param[in] repl REPL handle returned from esp_console_new_repl_xxx
  309. * @note Once the REPL got started, it won't be stopped until user call repl->del(repl) to destory the REPL environment.
  310. * @return
  311. * - ESP_OK on success
  312. * - ESP_ERR_INVALID_STATE, if repl has started already
  313. */
  314. esp_err_t esp_console_start_repl(esp_console_repl_t *repl);
  315. #ifdef __cplusplus
  316. }
  317. #endif