1234567891011121314151617181920212223242526272829 |
- mainmenu "RT-Thread Project Configuration"
- BSP_DIR := .
- RTT_DIR := ../../..
- PKGS_DIR := packages
- source "$(RTT_DIR)/Kconfig"
- osource "$PKGS_DIR/Kconfig"
- rsource "board/Kconfig"
- config BOARD_UR_DP1000
- bool
- select ARCH_RISCV64
- select ARCH_USING_RISCV_COMMON64
- select RT_USING_COMPONENTS_INIT
- select RT_USING_USER_MAIN
- select RT_USING_CACHE
- select ARCH_MM_MMU
- select ARCH_USING_ASID
- select ARCH_RISCV_FPU_D
- select ARCH_REMAP_KERNEL if RT_USING_SMART
- select RT_USING_DEVICE_OPS
- default y
- config __STACKSIZE__
- int "stack size for interrupt"
- default 4096
|