-
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: fast_pair: locator_tag: Rework ipc_radio configs
Split ipc_radio image configuration for debug (prj.conf) and release (prj_release.conf). Enabled logs in debug configuration, while disabled in release one. Jira: NCSDK-28458 Signed-off-by: Mateusz Kapala <mateusz.kapala@nordicsemi.no>
- Loading branch information
1 parent
cb750ce
commit 3d33b76
Showing
9 changed files
with
75 additions
and
11 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
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
9 changes: 9 additions & 0 deletions
9
...ooth/fast_pair/locator_tag/sysbuild/ipc_radio/boards/thingy53_nrf5340_cpunet_release.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 | ||
# | ||
|
||
# The FEM TX gain must be changed to achieve the 0 dBm TX power on the | ||
# Bluetooth controller side. | ||
CONFIG_MPSL_FEM_NRF21540_TX_GAIN_DB=20 |
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
37 changes: 37 additions & 0 deletions
37
samples/bluetooth/fast_pair/locator_tag/sysbuild/ipc_radio/prj_release.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,37 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
CONFIG_HEAP_MEM_POOL_SIZE=8192 | ||
CONFIG_MAIN_STACK_SIZE=512 | ||
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=512 | ||
|
||
CONFIG_SERIAL=n | ||
CONFIG_UART_CONSOLE=n | ||
CONFIG_LOG=n | ||
|
||
CONFIG_MBOX=y | ||
CONFIG_IPC_SERVICE=y | ||
|
||
CONFIG_BT=y | ||
CONFIG_BT_HCI_RAW=y | ||
CONFIG_BT_CTLR_ASSERT_HANDLER=y | ||
|
||
CONFIG_IPC_RADIO_BT=y | ||
CONFIG_IPC_RADIO_BT_HCI_IPC=y | ||
|
||
# Error handling configuration | ||
CONFIG_RESET_ON_FATAL_ERROR=y | ||
|
||
# Align Bluetooth controller configuration on the Network Core | ||
# with Locator Tag sample requirements. | ||
CONFIG_BT_CENTRAL=n | ||
CONFIG_BT_MAX_CONN=3 | ||
CONFIG_BT_EXT_ADV=y | ||
CONFIG_BT_EXT_ADV_MAX_ADV_SET=2 | ||
CONFIG_BT_BUF_ACL_TX_SIZE=87 | ||
CONFIG_BT_BUF_ACL_RX_SIZE=87 | ||
CONFIG_BT_CTLR_DATA_LENGTH_MAX=87 | ||
CONFIG_BT_CTLR_TX_PWR_DYNAMIC_CONTROL=y |