76 lines
2.3 KiB
Plaintext
76 lines
2.3 KiB
Plaintext
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menu "Misc"
|
|
|
|
config LOG_DOMAIN_ID
|
|
int "Domain ID"
|
|
depends on !LOG_MODE_MINIMAL
|
|
default 0
|
|
range 0 7
|
|
help
|
|
In multicore system each application/core must have unique domain ID.
|
|
|
|
config LOG_CMDS
|
|
bool "Shell commands"
|
|
depends on SHELL
|
|
depends on !LOG_FRONTEND_ONLY && !LOG_MODE_MINIMAL
|
|
default y if SHELL
|
|
|
|
config LOG_TEST_CLEAR_MESSAGE_SPACE
|
|
bool "Clear message after allocation"
|
|
default y
|
|
depends on ZTEST
|
|
depends on LOG2
|
|
help
|
|
Used in testing to simplify message comparision if message contains
|
|
paddings.
|
|
|
|
config LOG2_USE_VLA
|
|
bool "Using variable length arrays"
|
|
default y if !MISRA_SANE
|
|
help
|
|
Using VLA slightly decreases stack usage in some cases it may not be
|
|
supported. Note that VLA are used for arrays which size is resolved at
|
|
compile time so at runtime arrays have fixed size.
|
|
|
|
config LOG2_ALWAYS_RUNTIME
|
|
bool "Always use runtime message creation (v2)"
|
|
default y if NO_OPTIMIZATIONS
|
|
default y if LOG_MODE_IMMEDIATE
|
|
default y if "$(ZEPHYR_TOOLCHAIN_VARIANT)" = "xcc"
|
|
help
|
|
If enabled, runtime method is always used for message creation. Static
|
|
creation relies on compiler being able to optimize and remove code
|
|
based on information known at compile time. Runtime only approach must
|
|
be used when optimization is disabled because some compilers
|
|
(seen on arm_cortex_m and x86) were using unrealistic amount of stack
|
|
for dead code. It is also required in immediate mode since it requires
|
|
less stack than static message creation and speed has lower priority
|
|
in that mode.
|
|
|
|
config LOG2_FMT_SECTION
|
|
bool "Keep log strings in dedicated section"
|
|
help
|
|
When enabled, logs are kept in dedicated memory section. It allows
|
|
removing strings from final binary and should be used for dictionary
|
|
logging.
|
|
|
|
config LOG_MEM_UTILIZATION
|
|
bool "Tracking maximum memory utilization"
|
|
depends on LOG_MODE_DEFERRED
|
|
default y if LOG_CMDS
|
|
select MEM_SLAB_TRACE_MAX_UTILIZATION if LOG1
|
|
help
|
|
When enabled, maximum usage of memory used for log messages in deferred
|
|
mode is tracked. It can be used to trim LOG_BUFFER_SIZE.
|
|
|
|
config LOG2_MSG_PKG_ALWAYS_ADD_RO_STRING_IDXS
|
|
bool
|
|
help
|
|
Enable this option to force log messages to always append indexes of
|
|
read-only string arguments in the package. This should be selected by
|
|
backends if required.
|
|
|
|
endmenu
|