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