1# Copyright (c) 2019 Linaro Limited
2# SPDX-License-Identifier: Apache-2.0
3
4if SHIELD_X_NUCLEO_IDB05A1
5
6if BT
7
8config SPI
9	default y
10
11choice BT_HCI_BUS_TYPE
12	default BT_SPI
13endchoice
14
15config BT_BLUENRG_ACI
16	default y
17# Disable Flow control
18config BT_HCI_ACL_FLOW_CONTROL
19	default n
20config BT_HCI_VS_EXT
21	default n
22
23endif # BT
24
25endif
26