• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

boards/04-Jan-2025-1614

dts/arm/nordic/04-Jan-2025-65

src/04-Jan-2025-428300

CMakeLists.txtD04-Jan-2025190 95

README.rstD04-Jan-20251.4 KiB4129

debug_overlay.confD04-Jan-202581 64

nrf5340_cpunet_bis-bt_ll_sw_split.confD04-Jan-20252.9 KiB11373

nrf5340_cpunet_bt_mesh-bt_ll_sw_split.confD04-Jan-2025698 3320

nrf5340_cpunet_cis-bt_ll_sw_split.confD04-Jan-20252.7 KiB10466

nrf5340_cpunet_df-bt_ll_sw_split.confD04-Jan-20252 KiB8555

nrf5340_cpunet_df-bt_ll_sw_split.overlayD04-Jan-2025706 2724

nrf5340_cpunet_iso-bt_ll_sw_split.confD04-Jan-20254.6 KiB162101

nrf5340_cpunet_iso_broadcast-bt_ll_sw_split.confD04-Jan-20251.4 KiB5133

nrf5340_cpunet_iso_central-bt_ll_sw_split.confD04-Jan-20252.2 KiB7752

nrf5340_cpunet_iso_peripheral-bt_ll_sw_split.confD04-Jan-20251.9 KiB7147

nrf5340_cpunet_iso_receive-bt_ll_sw_split.confD04-Jan-2025986 3828

overlay-nrf5340_cpunet_iso_nrf21540_ek-bt_ll_sw_split.confD04-Jan-2025196 70

prj.confD04-Jan-2025579 249

sample.yamlD04-Jan-20254.3 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