2023-11-18 16:29:46 +08:00
|
|
|
mainmenu "MKRTOS Project Configuration"
|
2023-12-05 00:01:26 +08:00
|
|
|
source "mkrtos_knl/Kconfig"
|
|
|
|
|
source "mkrtos_user/Kconfig"
|
2024-01-18 00:48:16 +08:00
|
|
|
|
2024-01-27 15:40:05 +08:00
|
|
|
config BOARD_NAME
|
|
|
|
|
string "board name."
|
|
|
|
|
default "stm32f103zet6"
|
|
|
|
|
|
2024-01-18 00:48:16 +08:00
|
|
|
config CPU_TYPE
|
|
|
|
|
string "mkrtos set cpu type."
|
|
|
|
|
default "stm32f1"
|
|
|
|
|
|
|
|
|
|
config ARCH
|
|
|
|
|
string "cpu arch"
|
|
|
|
|
default "cortex-m3"
|
|
|
|
|
|
2024-01-27 15:40:05 +08:00
|
|
|
config FLOAT_TYPE
|
|
|
|
|
string "float type is soft or hard"
|
|
|
|
|
default "soft"
|
2024-10-17 23:31:20 +08:00
|
|
|
|
2024-04-04 16:51:29 +00:00
|
|
|
config ELF_LAUNCH
|
|
|
|
|
bool "elf app launch"
|
|
|
|
|
default n
|
2024-10-07 16:49:32 +08:00
|
|
|
|
2024-10-17 23:31:20 +08:00
|
|
|
config DTBO_SUPPORT
|
|
|
|
|
bool "dtb support."
|
|
|
|
|
default n
|
|
|
|
|
|
2024-10-07 16:49:32 +08:00
|
|
|
config DTBO_OFFSET
|
|
|
|
|
hex "dtbo img offset."
|
|
|
|
|
default 0x1000
|
|
|
|
|
|
2025-01-21 16:20:51 +08:00
|
|
|
config CPIO_SUPPORT
|
|
|
|
|
bool "support cpio img."
|
|
|
|
|
default y
|
2023-11-18 16:29:46 +08:00
|
|
|
|
2025-01-21 16:20:51 +08:00
|
|
|
config APP_PARAMS_NR
|
|
|
|
|
int "app params nr"
|
|
|
|
|
default 8
|
2023-12-05 00:01:26 +08:00
|
|
|
|
2025-01-21 16:20:51 +08:00
|
|
|
config APP_ENV_NR
|
|
|
|
|
int "app env nr"
|
|
|
|
|
default 8
|
2023-11-18 16:29:46 +08:00
|
|
|
|