Kconfig 990 B

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