Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

finsh_config.h 761B

12345678910111213141516171819202122232425262728293031
  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. #define RT_PRINTF_LONGLONG
  22. #define FINSH_USING_HISTORY
  23. // </c>
  24. // </h>
  25. // <<< end of configuration section >>>
  26. #endif