Kconfig 677 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. mainmenu "RT-Thread Project 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. config ENV_DIR
  15. string
  16. option env="ENV_ROOT"
  17. default "/"
  18. source "$RTT_DIR/Kconfig"
  19. source "$PKGS_DIR/Kconfig"
  20. config SOC_LM3S8962
  21. bool
  22. select ARCH_ARM_CORTEX_M3
  23. default y
  24. config RT_LWIP_PBUF_POOL_BUFSIZE
  25. int "The size of each pbuf in the pbuf pool"
  26. range 1500 2000
  27. default 1500
  28. config RT_LWIP_ETH_PAD_SIZE
  29. int
  30. default 2
  31. config RT_USING_UART1
  32. bool
  33. default y