Kconfig 800 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. mainmenu "RT-Thread Configuration"
  2. config BSP_DIR
  3. string
  4. option env="BSP_ROOT"
  5. default "."
  6. config RTT_DIR
  7. string
  8. option env="RTT_ROOT"
  9. default "../.."
  10. config PKGS_DIR
  11. string
  12. option env="PKGS_ROOT"
  13. default "packages"
  14. source "$RTT_DIR/Kconfig"
  15. source "$RTT_DIR/libcpu/mips/common/Kconfig"
  16. source "$PKGS_DIR/Kconfig"
  17. config SOC_LS1B
  18. bool
  19. select RT_USING_COMPONENTS_INIT
  20. select RT_USING_USER_MAIN
  21. default y
  22. if RT_USING_SERIAL
  23. config RT_USING_UART0
  24. bool "Using RT_USING_UART0"
  25. default y
  26. config RT_USING_UART1
  27. bool "Using RT_USING_UART1"
  28. default n
  29. config RT_USING_UART3
  30. bool "Using RT_USING_UART3"
  31. default n
  32. config RT_UART_RX_BUFFER_SIZE
  33. int "The rx buffer size"
  34. default 64 if RT_USING_SERIAL
  35. default 64
  36. endif