Update unittests for the following areas/controll procedures - API - collision handling - invalid PDUs - unsupported procedures - buffer allocation - TX queue - Data Length Update - PHY update - Encryption - Ping - Version - Channel map update - Min. used channels - Connection update - SCA - Terminate connection - CTE request - CIS create - CIS terminate Also moved the internal API tests from the ull_llcp* files to the proper unittest C-file Unused files are removed Signed-off-by: Andries Kruithof <andries.kruithof@nordicsemi.no>
30 lines
518 B
Plaintext
30 lines
518 B
Plaintext
# Copyright (c) 2022 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# some of the control procedures in the BT LL depend on
|
|
# the following configs been set
|
|
|
|
config SOC_COMPATIBLE_NRF
|
|
default y
|
|
|
|
config BT_CTLR_DATA_LEN_UPDATE_SUPPORT
|
|
default y
|
|
|
|
config BT_CTLR_PHY_UPDATE_SUPPORT
|
|
default y
|
|
|
|
config BT_CTLR_PHY_CODED_SUPPORT
|
|
default y
|
|
|
|
config BT_CTLR_PHY_2M_SUPPORT
|
|
default y
|
|
|
|
config ENTROPY_NRF_FORCE_ALT
|
|
default n
|
|
|
|
config ENTROPY_NRF5_RNG
|
|
default n
|
|
|
|
# Include Zephyr's Kconfig
|
|
source "Kconfig"
|