zephyr/tests/bluetooth/controller/ctrl_data_length_update/Kconfig
Torsten Rasmussen c23be568fb tests: add Kconfig file to bluetooth ctrl_data_length_update testcases
With Kconfig support in unittest the bluetooth ctrl_data_length_update
test fails because the symbols being configured are promptless or
disabled because of dependencies.

Add a Kconfig file to make needed symbols visible in unittest mode.

Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen@nordicsemi.no>
2022-08-18 14:29:14 +02:00

20 lines
546 B
Plaintext

# SPDX-License-Identifier: Apache-2.0
#
# Copyright (c) 2022, Nordic Semiconductor ASA
config BT_CTLR_PHY
prompt "Bluetooth 5.0 phy"
help
This is generally a hidden symbol but for unit testing a prompt is
defined to allow controlling this setting in the build.
config BT_CTLR_PHY_CODED
bool "Coded PHY Support"
depends on BT_CTLR_PHY
help
This is symbol generally has more dependencies but to allow for easy
unit testing of this source module the Kconfig setting allows to strip
extra dependencies.
source "Kconfig.zephyr"