• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..22-Aug-2025-

boards/22-Aug-2025-

dts/arm/nordic/22-Aug-2025-

src/22-Aug-2025-

CMakeLists.txt A D22-Aug-2025198 95

README.rst A D22-Aug-20251.4 KiB4129

debug_overlay.conf A D22-Aug-202565 53

nrf5340_cpunet_bis-bt_ll_sw_split.conf A D22-Aug-20253 KiB11173

nrf5340_cpunet_bt_mesh-bt_ll_sw_split.conf A D22-Aug-2025545 2819

nrf5340_cpunet_cis-bt_ll_sw_split.conf A D22-Aug-20252.7 KiB10165

nrf5340_cpunet_df-bt_ll_sw_split.conf A D22-Aug-20252 KiB8254

nrf5340_cpunet_df-bt_ll_sw_split.overlay A D22-Aug-2025732 2724

nrf5340_cpunet_iso-bt_ll_sw_split.conf A D22-Aug-20254.8 KiB163107

nrf5340_cpunet_iso_broadcast-bt_ll_sw_split.conf A D22-Aug-20251.3 KiB4833

nrf5340_cpunet_iso_central-bt_ll_sw_split.conf A D22-Aug-20252 KiB7351

nrf5340_cpunet_iso_peripheral-bt_ll_sw_split.conf A D22-Aug-20251.8 KiB6746

nrf5340_cpunet_iso_receive-bt_ll_sw_split.conf A D22-Aug-2025840 3427

overlay-nrf5340_cpunet_iso_nrf21540_ek-bt_ll_sw_split.conf A D22-Aug-2025202 70

prj.conf A D22-Aug-2025417 198

sample.yaml A D22-Aug-20254.4 KiB122121

README.rst

1.. zephyr:code-sample:: bluetooth_hci_ipc
2   :name: HCI IPC
3   :relevant-api: hci_raw bluetooth
4
5   Expose a Bluetooth controller to another device or CPU using the IPC subsystem.
6
7Overview
8********
9
10This sample exposes :ref:`bluetooth_controller` support
11to another device or CPU using IPC subsystem.
12
13Requirements
14************
15
16* A board with IPC subsystem and Bluetooth LE support
17
18Building and Running
19********************
20
21This sample can be found under :zephyr_file:`samples/bluetooth/hci_ipc`
22in the Zephyr tree.
23
24To use this application, you need a board with a Bluetooth controller
25and IPC support.
26You can then build this application and flash it onto your board in
27the usual way. See :ref:`boards` for board-specific building and
28programming information.
29
30To test this sample, you need a separate device/CPU that acts as Bluetooth
31HCI IPC peer.
32This sample is compatible with the HCI IPC driver provided by
33Zephyr's Bluetooth :ref:`bt_hci_drivers` core. See the
34:kconfig:option:`CONFIG_BT_HCI_IPC` configuration option for more information.
35
36You might need to adjust the Kconfig configuration of this sample to make it
37compatible with the peer application. For example, :kconfig:option:`CONFIG_BT_MAX_CONN`
38must be equal to the maximum number of connections supported by the peer application.
39
40Refer to :zephyr:code-sample-category:`bluetooth` for general information about Bluetooth samples.
41