Kconfig 918 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. # you can change the RTT_ROOT default: "../.."
  11. # example : default "F:/git_repositories/rt-thread"
  12. config $PKGS_DIR
  13. string
  14. option env="PKGS_ROOT"
  15. default "packages"
  16. source "$RTT_DIR/Kconfig"
  17. source "$PKGS_DIR/Kconfig"
  18. config BSP_USING_SDRAM
  19. bool "Using SDRAM"
  20. default y
  21. config BSP_USING_UART1
  22. bool "Using uart1"
  23. select RT_USING_SERIAL
  24. default y
  25. config BSP_USING_UART4
  26. bool "Using uart4"
  27. select RT_USING_SERIAL
  28. default n
  29. config BSP_USING_UART5
  30. bool "Using uart5"
  31. select RT_USING_SERIAL
  32. default n
  33. config BSP_USING_UART6
  34. bool "Using uart6"
  35. select RT_USING_SERIAL
  36. default n
  37. config BSP_USING_UART7
  38. bool "Using uart7"
  39. select RT_USING_SERIAL
  40. default n