finsh_config.h 702 B

1234567891011121314151617181920212223242526272829
  1. /* FinSH config file */
  2. #ifndef __MSH_CFG_H__
  3. #define __MSH_CFG_H__
  4. // <<< Use Configuration Wizard in Context Menu >>>
  5. #define RT_USING_FINSH
  6. #define FINSH_USING_MSH
  7. #define FINSH_USING_MSH_ONLY
  8. // <h>FinSH Configuration
  9. // <o>the priority of finsh thread <1-30>
  10. // <i>the priority of finsh thread
  11. // <i>Default: 21
  12. #define FINSH_THREAD_PRIORITY 21
  13. // <o>the stack of finsh thread <1-4096>
  14. // <i>the stack of finsh thread
  15. // <i>Default: 4096 (4096Byte)
  16. #define FINSH_THREAD_STACK_SIZE 1024
  17. #define FINSH_USING_SYMTAB
  18. // <c1>Enable command description
  19. // <i>Enable command description
  20. #define FINSH_USING_DESCRIPTION
  21. // </c>
  22. // </h>
  23. // <<< end of configuration section >>>
  24. #endif