Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Host and Controller common dependencies
CONFIG_BT_EXT_ADV=y
CONFIG_BT_PER_ADV=y
CONFIG_BT_PER_ADV_SYNC=y
CONFIG_BT_PER_ADV_SYNC_MAX=2

# Broadcast and Connected ISO
CONFIG_BT_ISO_BROADCASTER=y
CONFIG_BT_ISO_SYNC_RECEIVER=y
CONFIG_BT_ISO_CENTRAL=y
CONFIG_BT_ISO_PERIPHERAL=y

# ISO Streams
CONFIG_BT_ISO_MAX_CHAN=4
CONFIG_BT_ISO_TX_BUF_COUNT=18
CONFIG_BT_ISO_RX_BUF_COUNT=1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/* SPDX-License-Identifier: Apache-2.0 */

Check warning on line 1 in samples/bluetooth/hci_uart/boards/nrf5340_audio_dk_nrf5340_cpuapp.overlay

View workflow job for this annotation

GitHub Actions / Run compliance checks on patch series (PR)

Copyright missing

samples/bluetooth/hci_uart/boards/nrf5340_audio_dk_nrf5340_cpuapp.overlay:1 File has no SPDX-FileCopyrightText header, consider adding one.

&uart0 {
compatible = "nordic,nrf-uarte";
current-speed = <1000000>;
status = "okay";
hw-flow-control;
};
2 changes: 2 additions & 0 deletions tests/bluetooth/tester/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ CONFIG_BT_ISO_BROADCASTER=y
CONFIG_BT_ISO_SYNC_RECEIVER=y
CONFIG_BT_ISO_CENTRAL=y
CONFIG_BT_ISO_PERIPHERAL=y
CONFIG_BT_ISO_RX_BUF_COUNT=4
CONFIG_BT_ISO_TX_BUF_COUNT=4
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

those are already set to those value in overlay-le-audio.conf
I'd suggest to remove them from there if already set here

CONFIG_BT_RX_STACK_SIZE=4096

CONFIG_BT_TESTING=y
Expand Down
2 changes: 1 addition & 1 deletion tests/bsim/bluetooth/tester/src/bsim_btp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1928,7 +1928,7 @@ void bsim_btp_uart_init(void)
{
TEST_ASSERT(device_is_ready(dev));

k_timer_start(&timer, K_MSEC(10), K_MSEC(10));
k_timer_start(&timer, K_USEC(100), K_USEC(100));
}

static void wait_for_response(const struct btp_hdr *cmd_hdr)
Expand Down
Loading