123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- mainmenu "RT-Thread Project Configuration"
- BSP_DIR := .
- RTT_DIR := ../../..
- PKGS_DIR := packages
- source "$(RTT_DIR)/Kconfig"
- osource "$PKGS_DIR/Kconfig"
- rsource "board/Kconfig"
- config BSP_USING_C906_LITTLE
- bool
- select ARCH_RISCV64
- select ARCH_RISCV_FPU_D
- select RT_USING_COMPONENTS_INIT
- select RT_USING_USER_MAIN
- default y
- config BSP_PLIC_PHY_ADDR
- hex
- default 0x70000000
- config IRQ_MAX_NR
- int
- default 61
- config BSP_TIMER_CLK_FREQ
- int
- default 25000000
- config BSP_GPIO_IRQ_BASE
- int
- default 41
- config BSP_SYS_GPIO_IRQ_BASE
- int
- default 47
- config SOC_TYPE_CV180X
- bool
- default n
- config SOC_TYPE_SG2000
- bool
- default n
- config SOC_TYPE_SG2002
- bool
- default n
- choice
- prompt "Board Type"
- default BOARD_TYPE_MILKV_DUO256M
- config BOARD_TYPE_MILKV_DUO
- select SOC_TYPE_CV180X
- bool "milkv-duo"
- config BOARD_TYPE_MILKV_DUO256M
- select SOC_TYPE_SG2002
- bool "milkv-duo256m"
- config BOARD_TYPE_MILKV_DUOS
- select SOC_TYPE_SG2000
- bool "milkv-duos"
- endchoice
|