Kconfig 814 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. mainmenu "RT-Thread Configuration"
  2. BSP_DIR := .
  3. RTT_DIR := ../..
  4. PKGS_DIR := packages
  5. source "$(RTT_DIR)/Kconfig"
  6. osource "$PKGS_DIR/Kconfig"
  7. config SOC_DM365
  8. bool
  9. select RT_USING_COMPONENTS_INIT
  10. select RT_USING_USER_MAIN
  11. default y
  12. comment "BSP configure"
  13. config RT_USING_GPIO_DEVICE
  14. bool "Using GPIO"
  15. default y
  16. config RT_USING_I2C_CONTROL
  17. bool "Using I2C control"
  18. select RT_USING_I2C
  19. default y
  20. config RT_USING_SDIO_CONTROL
  21. bool "Using SDIO control"
  22. select RT_USING_SDIO
  23. default y
  24. config RT_USING_SPI_CONTROL
  25. bool "Using SPI control"
  26. depends on RT_USING_SPI
  27. default y
  28. config RT_USING_EMAC
  29. bool "Using EMAC control"
  30. depends on RT_USING_LWIP
  31. default y
  32. config RT_MMU_PTE_SIZE
  33. int "The first page table for MMU"
  34. default 4096