2016-11-22 22:28:57 +08:00
|
|
|
# Copyright (c) 2016 Nordic Semiconductor ASA
|
2017-01-21 09:22:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-11-22 22:28:57 +08:00
|
|
|
|
|
|
|
config HAS_SEGGER_RTT
|
|
|
|
bool
|
2020-01-13 23:17:10 +08:00
|
|
|
help
|
|
|
|
Indicates that the platform supports SEGGER J-Link RTT.
|
2017-04-25 03:43:17 +08:00
|
|
|
|
2018-10-18 01:40:58 +08:00
|
|
|
config USE_SEGGER_RTT
|
2018-10-18 18:53:55 +08:00
|
|
|
bool "Enable SEGGER RTT libraries."
|
|
|
|
depends on HAS_SEGGER_RTT
|
|
|
|
help
|
|
|
|
Enable Segger J-Link RTT libraries for platforms that support it.
|
2019-02-28 05:55:32 +08:00
|
|
|
Selection of this option enables use of RTT for various subsystems.
|
2018-10-18 18:53:55 +08:00
|
|
|
Note that by enabling this option, RTT buffers consume more RAM.
|
2018-10-18 01:40:58 +08:00
|
|
|
|
|
|
|
if USE_SEGGER_RTT
|
2018-06-01 18:53:03 +08:00
|
|
|
|
|
|
|
config SEGGER_RTT_MAX_NUM_UP_BUFFERS
|
|
|
|
int "Maximum number of up-buffers"
|
|
|
|
default 3
|
|
|
|
|
|
|
|
config SEGGER_RTT_MAX_NUM_DOWN_BUFFERS
|
|
|
|
int "Maximum number of down-buffers"
|
|
|
|
default 3
|
|
|
|
|
|
|
|
config SEGGER_RTT_BUFFER_SIZE_UP
|
|
|
|
int "Size of the buffer for terminal output of target, up to host"
|
|
|
|
default 1024
|
|
|
|
|
|
|
|
config SEGGER_RTT_BUFFER_SIZE_DOWN
|
|
|
|
int "Size of the buffer for terminal input of target, from host"
|
|
|
|
default 16
|
|
|
|
|
|
|
|
config SEGGER_RTT_PRINTF_BUFFER_SIZE
|
|
|
|
int "Size of buffer for RTT printf to bulk-send chars via RTT"
|
|
|
|
default 64
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Mode for pre-initialized terminal channel (buffer 0)"
|
|
|
|
default SEGGER_RTT_MODE_NO_BLOCK_SKIP
|
|
|
|
|
|
|
|
config SEGGER_RTT_MODE_NO_BLOCK_SKIP
|
|
|
|
bool "Skip. Do not block, output nothing."
|
|
|
|
|
|
|
|
config SEGGER_RTT_MODE_NO_BLOCK_TRIM
|
|
|
|
bool "Trim: Do not block, output as much as fits."
|
|
|
|
|
|
|
|
config SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL
|
|
|
|
bool "Block: Wait until there is space in the buffer."
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config SEGGER_RTT_MODE
|
2020-02-07 01:34:04 +08:00
|
|
|
int
|
2018-07-05 23:44:45 +08:00
|
|
|
default 2 if SEGGER_RTT_MODE_BLOCK_IF_FIFO_FULL
|
Kconfig: Use the first default with a satisfied condition
Up until now, Zephyr has patched Kconfig to use the last 'default' with
a satisfied condition, instead of the first one. I'm not sure why the
patch was added (it predates Kconfiglib), but I suspect it's related to
Kconfig.defconfig files.
There are at least three problems with the patch:
1. It's inconsistent with how Kconfig works in other projects, which
might confuse newcomers.
2. Due to oversights, earlier 'range' properties are still preferred,
as well as earlier 'default' properties on choices.
In addition to being inconsistent, this makes it impossible to
override 'range' properties and choice 'default' properties if the
base definition of the symbol/choice already has 'range'/'default'
properties.
I've seen errors caused by the inconsistency, and I suspect there
are more.
3. A fork of Kconfiglib that adds the patch needs to be maintained.
Get rid of the patch and go back to standard Kconfig behavior, as
follows:
1. Include the Kconfig.defconfig files first instead of last in
Kconfig.zephyr.
2. Include boards/Kconfig and arch/<arch>/Kconfig first instead of
last in arch/Kconfig.
3. Include arch/<arch>/soc/*/Kconfig first instead of last in
arch/<arch>/Kconfig.
4. Swap a few other 'source's to preserve behavior for some scattered
symbols with multiple definitions.
Swap 'source's in some no-op cases too, where it might match the
intent.
5. Reverse the defaults on symbol definitions that have more than one
default.
Skip defaults that are mutually exclusive, e.g. where each default
has an 'if <some board>' condition. They are already safe.
6. Remove the prefer-later-defaults patch from Kconfiglib.
Testing was done with a Python script that lists all Kconfig
symbols/choices with multiple defaults, along with a whitelist of fixed
symbols. The script also verifies that there are no "unreachable"
defaults hidden by defaults without conditions
As an additional test, zephyr/.config was generated before and after the
change for several samples and checked to be identical (after sorting).
This commit includes some default-related cleanups as well:
- Simplify some symbol definitions, e.g. where a default has 'if FOO'
when the symbol already has 'depends on FOO'.
- Remove some redundant 'default ""' for string symbols. This is the
implicit default.
Piggyback fixes for swapped ranges on BT_L2CAP_RX_MTU and
BT_L2CAP_TX_MTU (caused by confusing inconsistency).
Piggyback some fixes for style nits too, e.g. unindented help texts.
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2018-07-30 16:57:47 +08:00
|
|
|
default 1 if SEGGER_RTT_MODE_NO_BLOCK_TRIM
|
|
|
|
default 0
|
2018-06-01 20:10:17 +08:00
|
|
|
|
|
|
|
config SEGGER_RTT_MEMCPY_USE_BYTELOOP
|
|
|
|
bool "Use a simple byte-loop instead of standard memcpy"
|
|
|
|
|
2018-07-05 23:44:45 +08:00
|
|
|
endif
|