Files

52 lines
695 B
Plaintext
Raw Permalink Normal View History

2023-08-30 16:21:18 +08:00
menu "FreeRTOS options"
config KERNEL_FREERTOS
bool
default y
config DRIVER_HAL_EN
bool
default y
config DRIVER_BARE_DRV_EN
bool
default y
2024-01-27 08:47:24 +08:00
if ! AIC_BOOTLOADER
config AIC_BAREMETAL_CONSOLE_UART
int "Baremetal console UART ID"
range 0 8
default 0
endif
config ARCH_RISCV
bool
config ARCH_RISCV_FPU
bool
config ARCH_RISCV_FPU_S
select ARCH_RISCV_FPU
bool
config ARCH_RISCV_FPU_D
select ARCH_RISCV_FPU
bool
config ARCH_RISCV32
select ARCH_RISCV
bool
config ARCH_RISCV64
select ARCH_RISCV
select ARCH_CPU_64BIT
bool
config ARCH_CSKY
bool
source "kernel/freertos/Kconfig.kernel"
2023-08-30 16:21:18 +08:00
endmenu