#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
 ******************************************************************************/