48 lines
814 B
Plaintext
48 lines
814 B
Plaintext
mainmenu "RT-Thread Configuration"
|
|
|
|
BSP_DIR := .
|
|
|
|
RTT_DIR := ../..
|
|
|
|
PKGS_DIR := packages
|
|
|
|
source "$(RTT_DIR)/Kconfig"
|
|
osource "$PKGS_DIR/Kconfig"
|
|
|
|
config SOC_DM365
|
|
bool
|
|
select RT_USING_COMPONENTS_INIT
|
|
select RT_USING_USER_MAIN
|
|
default y
|
|
|
|
comment "BSP configure"
|
|
|
|
config RT_USING_GPIO_DEVICE
|
|
bool "Using GPIO"
|
|
default y
|
|
|
|
config RT_USING_I2C_CONTROL
|
|
bool "Using I2C control"
|
|
select RT_USING_I2C
|
|
default y
|
|
|
|
config RT_USING_SDIO_CONTROL
|
|
bool "Using SDIO control"
|
|
select RT_USING_SDIO
|
|
default y
|
|
|
|
config RT_USING_SPI_CONTROL
|
|
bool "Using SPI control"
|
|
depends on RT_USING_SPI
|
|
default y
|
|
|
|
config RT_USING_EMAC
|
|
bool "Using EMAC control"
|
|
depends on RT_USING_LWIP
|
|
default y
|
|
|
|
config RT_MMU_PTE_SIZE
|
|
int "The first page table for MMU"
|
|
default 4096
|
|
|