micro_climate/Drivers/Shell/shell_config.h

25 lines
652 B
C
Raw Permalink Normal View History

2024-07-05 03:52:43 +00:00
#ifndef __SHELL_CONFIG_H_
#define __SHELL_CONFIG_H_
/* config if use standard output */
//#define SHELL_CONFIG_USE_STDIO
/* config if use auto complete */
#define SHELL_CONFIG_AUTO_COMPLETE
/* config if use history */
#define SHELL_CONFIG_USE_HIST
/* consult buffer size */
#define SHELL_CB_SIZE (128)
/* maximum function args */
#define SHELL_MAX_ARGS (8)
/* maximum number of history record */
#define HIST_MAX (10)
#endif
/*******************************************************************************
* EOF
******************************************************************************/