You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.6 KiB
107 lines
2.6 KiB
|
|
menu "Sdk common configuration"
|
|
choice DEBUG_LOG_LEVEL
|
|
prompt "Debug log level"
|
|
default LOG_ERROR
|
|
help
|
|
VERBOS: Print bigger chunks of debugging information
|
|
DEBUG: Print extra information for debugging
|
|
INFO: Print necessary information messages
|
|
WARN: Print error conditions from which recovery measures have been taken
|
|
ERROR: Print critical errors, software module can not recover on its own
|
|
|
|
config LOG_VERBOS
|
|
bool "Verbos"
|
|
config LOG_DEBUG
|
|
bool "Debug"
|
|
config LOG_INFO
|
|
bool "Info"
|
|
config LOG_WARN
|
|
bool "Warn"
|
|
config LOG_ERROR
|
|
bool "Error"
|
|
config LOG_NONE
|
|
bool "None"
|
|
|
|
endchoice # DEBUG_LOG_LEVEL
|
|
|
|
config LOG_EXTRA_INFO
|
|
bool "Debug log with extra info"
|
|
default n
|
|
help
|
|
Print debug information with source file name and source code line num.
|
|
|
|
config LOG_DISPALY_CORE_NUM
|
|
bool "Debug display with core"
|
|
default n
|
|
help
|
|
To display CPU core information during debugging
|
|
|
|
config BOOTUP_DEBUG_PRINTS
|
|
bool
|
|
prompt "Bootup debug"
|
|
default n
|
|
help
|
|
Enable Bootup debug printing
|
|
|
|
|
|
|
|
config USE_DEFAULT_INTERRUPT_CONFIG
|
|
bool
|
|
prompt "Use default interrupt configuration"
|
|
default y
|
|
help
|
|
"If this option is not selected, core0 is used as the main core by default and all interrupt driver modules are initialized. Non-0 core initializes only the necessary interrupt driver modules. If this option is selected, the developer needs to initiate each module independently "
|
|
if USE_DEFAULT_INTERRUPT_CONFIG
|
|
choice INTERRUPT_ROLE_SELECT
|
|
prompt "Interrupt role select"
|
|
default INTERRUPT_ROLE_MASTER
|
|
help
|
|
"Select Interrupt role"
|
|
|
|
config INTERRUPT_ROLE_MASTER
|
|
bool "Use master role"
|
|
|
|
config INTERRUPT_ROLE_SLAVE
|
|
bool "Use slave role"
|
|
|
|
endchoice # INTERRUPT_ROLE_SELECT
|
|
endif
|
|
|
|
endmenu
|
|
|
|
|
|
|
|
menu "Image information configuration"
|
|
|
|
|
|
config IMAGE_INFO
|
|
bool "Enable image information"
|
|
default n
|
|
help
|
|
This option enables the image information feature.
|
|
|
|
config IMAGE_CORE
|
|
int "Image core"
|
|
depends on IMAGE_INFO
|
|
help
|
|
This option specifies the core on which the image runs.
|
|
The maximum number.
|
|
|
|
# config IMAGE_PRIORITY
|
|
# int "Image priority"
|
|
# range 0 31
|
|
# depends on IMAGE_INFO
|
|
# default 0
|
|
# help
|
|
# This option specifies the priority of the core startup.
|
|
|
|
config IMAGE_DELAY
|
|
int "Image delay (ms)"
|
|
depends on IMAGE_INFO
|
|
default 0
|
|
help
|
|
This option specifies the delay time (in milliseconds) before next image starts.
|
|
|
|
|
|
endmenu
|
|
|