aboutsummaryrefslogtreecommitdiffstats
path: root/os/various/shell/shell.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/various/shell/shell.h')
-rw-r--r--os/various/shell/shell.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/os/various/shell/shell.h b/os/various/shell/shell.h
index 4620ded8b..b155ec99b 100644
--- a/os/various/shell/shell.h
+++ b/os/various/shell/shell.h
@@ -148,8 +148,10 @@ typedef struct {
const ShellCommand *sc_commands; /**< @brief Shell extra commands
table. */
#if (SHELL_USE_HISTORY == TRUE) || defined(__DOXYGEN__)
- ShellHistory *sc_history; /**< @brief Shell command history
+ char *sc_histbuf; /**< @brief Shell command history
buffer. */
+ const int sc_histsize; /**< @brief Shell history buffer
+ size. */
#endif
#if (SHELL_USE_COMPLETION == TRUE) || defined(__DOXYGEN__)
char **sc_completion; /**< @brief Shell command completion
@@ -207,7 +209,7 @@ extern "C" {
void shellInit(void);
THD_FUNCTION(shellThread, p);
void shellExit(msg_t msg);
- bool shellGetLine(ShellConfig *scfg, char *line, unsigned size);
+ bool shellGetLine(ShellConfig *scfg, char *line, unsigned size, ShellHistory *shp);
#ifdef __cplusplus
}
#endif