mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-19 04:05:23 +00:00
Put shield configuration Kconfig flags in new Kconfig.defconfig. This way shield BLE susbystem can now be selected by application using BT symbol, similarly to what is done when BlueNRG ship is directly present on board. Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
29 lines
366 B
Plaintext
29 lines
366 B
Plaintext
# Copyright (c) 2019 Linaro Limited
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if SHIELD_X_NUCLEO_IDB05A1
|
|
|
|
if BT
|
|
|
|
config SPI
|
|
default y
|
|
|
|
choice BT_HCI_BUS_TYPE
|
|
default BT_SPI
|
|
endchoice
|
|
|
|
config BT_SPI_BLUENRG
|
|
default y
|
|
|
|
config BT_BLUENRG_ACI
|
|
default y
|
|
# Disable Flow control
|
|
config BT_HCI_ACL_FLOW_CONTROL
|
|
default n
|
|
config BT_HCI_VS_EXT
|
|
default n
|
|
|
|
endif # BT
|
|
|
|
endif
|