File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ config SCAN_OFFLOAD
7
7
bool "Whether to wait for a Broadcast Assistant"
8
8
default y
9
9
# enable PAST support if we can
10
- select BT_PER_ADV_SYNC_TRANSFER_RECEIVER if !BT_CTLR || BT_CTLR_SYNC_TRANSFER_RECEIVER_SUPPORT
10
+ select BT_PER_ADV_SYNC_TRANSFER_RECEIVER if (!HAS_BT_CTLR || \
11
+ BT_CTLR_SYNC_TRANSFER_RECEIVER_SUPPORT)
11
12
help
12
13
If set to true, the sample will start advertising connectable for
13
14
Broadcast Assistants.
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ config SAMPLE_UNICAST
13
13
select BT_PAC_SNK_LOC
14
14
select BT_PAC_SRC
15
15
select BT_PAC_SRC_LOC
16
- select BT_CTLR_PERIPHERAL_ISO if BT_CTLR
16
+ select BT_CTLR_PERIPHERAL_ISO if HAS_BT_CTLR
17
17
help
18
18
If set to true, the sample will start advertising connectable for
19
19
Broadcast Assistants.
@@ -27,8 +27,9 @@ config SAMPLE_BROADCAST
27
27
select BT_BAP_BROADCAST_SINK
28
28
select BT_PAC_SNK
29
29
select BT_PAC_SNK_LOC
30
- select BT_PER_ADV_SYNC_TRANSFER_RECEIVER if !BT_CTLR || BT_CTLR_SYNC_TRANSFER_RECEIVER_SUPPORT
31
- select BT_CTLR_SYNC_ISO if BT_CTLR
30
+ select BT_PER_ADV_SYNC_TRANSFER_RECEIVER if (!HAS_BT_CTLR || \
31
+ BT_CTLR_SYNC_TRANSFER_RECEIVER_SUPPORT)
32
+ select BT_CTLR_SYNC_ISO if HAS_BT_CTLR
32
33
help
33
34
If set to true, the sample will start advertising syncable audio streams
34
35
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ config SAMPLE_UNICAST
15
15
select BT_KEYS_OVERWRITE_OLDEST
16
16
select BT_CSIP_SET_COORDINATOR
17
17
select BT_BAP_UNICAST_CLIENT
18
- select BT_CTLR_CENTRAL_ISO if BT_CTLR
18
+ select BT_CTLR_CENTRAL_ISO if HAS_BT_CTLR
19
19
help
20
20
If set to true, the sample will start advertising connectable for
21
21
Broadcast Assistants.
@@ -26,7 +26,7 @@ config SAMPLE_BROADCAST
26
26
select BT_BROADCASTER
27
27
select BT_ISO_BROADCASTER
28
28
select BT_BAP_BROADCAST_SOURCE
29
- select BT_CTLR_ADV_ISO if BT_CTLR
29
+ select BT_CTLR_ADV_ISO if HAS_BT_CTLR
30
30
help
31
31
If set to true, the sample will start advertising syncable audio streams
32
32
You can’t perform that action at this time.
0 commit comments