1
0

Kconfig 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. menu "RT-Thread Components"
  2. config RT_USING_COMPONENTS_INIT
  3. bool "Use components automatically initialization"
  4. default y
  5. if RT_USING_COMPONENTS_INIT
  6. config RT_USING_USER_MAIN
  7. bool "The main() function as user entry function"
  8. default y
  9. if RT_USING_USER_MAIN
  10. config RT_MAIN_THREAD_STACK_SIZE
  11. int "Set main thread stack size"
  12. default 2048
  13. config RT_MAIN_THREAD_PRIORITY
  14. int "Set main thread priority"
  15. default 4 if RT_THREAD_PRIORITY_8
  16. default 10 if RT_THREAD_PRIORITY_32
  17. default 85 if RT_THREAD_PRIORITY_256
  18. endif
  19. endif
  20. source "$RTT_DIR/components/cplusplus/Kconfig"
  21. source "$RTT_DIR/components/finsh/Kconfig"
  22. source "$RTT_DIR/components/dfs/Kconfig"
  23. source "$RTT_DIR/components/drivers/Kconfig"
  24. source "$RTT_DIR/components/libc/Kconfig"
  25. source "$RTT_DIR/components/lwp/Kconfig"
  26. source "$RTT_DIR/components/net/Kconfig"
  27. source "$RTT_DIR/components/vbus/Kconfig"
  28. source "$RTT_DIR/components/utilities/Kconfig"
  29. source "$RTT_DIR/components/CMSIS/Kconfig"
  30. endmenu