From 9a8b17c57df12e8cee808d66b5ad7232a7f81a6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrzej=20G=C5=82=C4=85bek?= Date: Mon, 27 Jan 2025 09:25:02 +0100 Subject: [PATCH] samples: bluetooth: iso_time_sync: Update configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since the dependencies of `BT_ISO_CENTRAL/PERIPHERAL` options have changed and they no longer select `BT_CENTRAL/PERIPHERAL` options but rather depend on them, the latter must be explicitly enabled. Also enable the nrfx_gppi helper explicitly as the sample uses it (see controller_time_*.c). For nRF54H it will not be enabled by the UART driver like it happens for nRF52 and nRF53. Signed-off-by: Andrzej Głąbek --- samples/bluetooth/iso_time_sync/prj.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/samples/bluetooth/iso_time_sync/prj.conf b/samples/bluetooth/iso_time_sync/prj.conf index a301daaf51d4..f29213d091d1 100644 --- a/samples/bluetooth/iso_time_sync/prj.conf +++ b/samples/bluetooth/iso_time_sync/prj.conf @@ -4,6 +4,8 @@ CONFIG_BT_ISO_SYNC_RECEIVER=y CONFIG_BT_ISO_CENTRAL=y CONFIG_BT_ISO_PERIPHERAL=y CONFIG_BT_OBSERVER=y +CONFIG_BT_CENTRAL=y +CONFIG_BT_PERIPHERAL=y CONFIG_BT_DEVICE_NAME="Nordic_ISO" CONFIG_BT_MAX_CONN=5 @@ -18,6 +20,8 @@ CONFIG_BT_CTLR_CONN_ISO_STREAMS=4 CONFIG_BT_ISO_TX_MTU=6 CONFIG_BT_ISO_RX_MTU=23 +CONFIG_NRFX_GPPI=y + CONFIG_CONSOLE=y CONFIG_CONSOLE_SUBSYS=y CONFIG_CONSOLE_HANDLER=y