KConfig 816 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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_RTC_NAME
  18. string "RT_RTC_NAME"
  19. default rtc
  20. config RT_USING_EXT_SDRAM
  21. bool "Using RT_USING_EXT_SDRAM"
  22. default y
  23. config RT_USING_UART1
  24. bool "Using RT_USING_UART1"
  25. default y
  26. config RT_USING_UART2
  27. bool "Using RT_USING_UART2"
  28. default y
  29. config RT_USING_UART3
  30. bool "Using RT_USING_UART3"
  31. default y
  32. config RT_USING_SPI5
  33. bool "Using RT_USING_SPI5"
  34. default y
  35. endmenu