Kconfig 882 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. comment "BSP configure"
  17. config RT_USING_GPIO_DEVICE
  18. bool "Using GPIO"
  19. default y
  20. config RT_USING_I2C_CONTROL
  21. bool "Using I2C control"
  22. select RT_USING_I2C
  23. default y
  24. config RT_USING_SDIO_CONTROL
  25. bool "Using SDIO control"
  26. select RT_USING_SDIO
  27. default y
  28. config RT_USING_SPI_CONTROL
  29. bool "Using SPI control"
  30. depends on RT_USING_SPI
  31. default y
  32. config RT_USING_EMAC
  33. bool "Using EMAC control"
  34. depends on RT_USING_LWIP
  35. default y
  36. config RT_MMU_PTE_SIZE
  37. int "The first page table for MMU"
  38. default 4096