This repository has been archived on 2023-07-17. You can view files and clone it, but cannot push or open issues or pull requests.
bl_mcu_sdk/components/shell/shell_config.h

15 lines
334 B
C
Raw Normal View History

2021-06-20 12:30:18 +08:00
#ifndef __SHELL_CONFIG_H__
#define __SHELL_CONFIG_H__
#define SHELL_DEFAULT_NAME "bouffalolab "
2021-06-20 12:30:18 +08:00
#define SHELL_CONSOLEBUF_SIZE 128
#define SHELL_PROMPT_SIZE 20
2021-06-20 12:30:18 +08:00
#define SHELL_HISTORY_LINES 5
#define SHELL_CMD_SIZE 50
#define SHELL_ARG_NUM 8
//#define SHELL_USING_FS
//#define SHELL_USING_COLOR
2021-06-20 12:30:18 +08:00
#endif