Kconfig 459 B

123456789101112131415161718192021222324252627282930
  1. mainmenu "RT-Thread Project Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../..
  4. PKGS_DIR := packages
  5. ENV_DIR := /
  6. source "$(RTT_DIR)/Kconfig"
  7. osource "$PKGS_DIR/Kconfig"
  8. config SOC_LM3S8962
  9. bool
  10. select ARCH_ARM_CORTEX_M3
  11. default y
  12. config RT_LWIP_PBUF_POOL_BUFSIZE
  13. int "The size of each pbuf in the pbuf pool"
  14. range 1500 2000
  15. default 1500
  16. config RT_LWIP_ETH_PAD_SIZE
  17. int
  18. default 2
  19. config RT_USING_UART1
  20. bool
  21. default y