-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
samples: bluetooth: peripheral_urat: Add nrf54h20 rpc_host to build
Add possibility to build the sample application targeted to nrf54h20 with use of Bluetooth API wrapped with RPC Host client. The Radio core application in such case must be ipc_radio with enabled Bluetooth RPC host. That reqires change to sysbuild configuration of the sample application. One note, the Bluetooth RPC subsystem requires to have same Bluetooth device name on obth ends of RPC communication, so there is used FILE_SUFFIX=bt_rpc and provided sysbuild configuration files that are include when the suffix is used in build call. To build the sample with enabled Bluetooth RPC subsys use: 'west build -b nrf54h20dk/nrf54h20/cpuapp --sysbuild -p -S nordic-bt-rpc -- -DFILE_SUFFIX=bt_rpc' Signed-off-by: Piotr Pryga <[email protected]>
- Loading branch information
1 parent
4845a72
commit e64a850
Showing
6 changed files
with
39 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
SB_CONFIG_NETCORE_IPC_RADIO_BT_HCI_IPC=y |
9 changes: 9 additions & 0 deletions
9
samples/bluetooth/peripheral_uart/sysbuild/ipc_radio/prj.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
CONFIG_SERIAL=n | ||
CONFIG_UART_CONSOLE=n | ||
CONFIG_LOG=n |
11 changes: 11 additions & 0 deletions
11
samples/bluetooth/peripheral_uart/sysbuild/ipc_radio/prj_bt_rpc.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
CONFIG_BT_DEVICE_NAME="Nordic_UART_Service" | ||
|
||
CONFIG_SERIAL=n | ||
CONFIG_UART_CONSOLE=n | ||
CONFIG_LOG=n |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
SB_CONFIG_NETCORE_IPC_RADIO_BT_RPC=y |