KConfig 529 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 "$PKGS_DIR/KConfig"
  16. menu "BSP_SPECIAL CONFIG"
  17. config RT_USING_UART
  18. bool "Using RT_USING_UART"
  19. default y
  20. if RT_USING_UART
  21. config RT_USING_UART1
  22. bool "Using RT_USING_UART1"
  23. default y
  24. endif
  25. endmenu