-
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: add nRF54H20 DK support
Added support for the nRF54H20 DK build target in the Fast Pair Locator Tag sample. Ref: NCSDK-30339 Signed-off-by: Kamil Piszczek <[email protected]>
- Loading branch information
Showing
10 changed files
with
135 additions
and
24 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
7 changes: 7 additions & 0 deletions
7
samples/bluetooth/fast_pair/locator_tag/configuration/boards/nrf54h20dk_nrf54h20_cpuapp.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,7 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor ASA | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
CONFIG_SUIT=y |
44 changes: 44 additions & 0 deletions
44
...s/bluetooth/fast_pair/locator_tag/configuration/boards/nrf54h20dk_nrf54h20_cpuapp.overlay
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,44 @@ | ||
/* | ||
* Copyright (c) 2024 Nordic Semiconductor ASA | ||
* | ||
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
*/ | ||
|
||
/* Decrease the storage partition size by 0x1000 bytes and move it 0x1000 bytes forward | ||
* in the address space to create a place for the Fast Pair partition. Define the Fast | ||
* Pair partition in the provided memory gap. | ||
*/ | ||
&mram1x { | ||
/delete-node/ cpuapp-rw-partitions; | ||
|
||
cpuapp_rw_partitions: cpuapp-rw-partitions { | ||
compatible = "nordic,owned-partitions", "fixed-partitions"; | ||
status = "okay"; | ||
nordic,access = <NRF_OWNER_ID_APPLICATION NRF_PERM_RWS>; | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
|
||
dfu_partition: partition@100000 { | ||
reg = <0x100000 DT_SIZE_K(908)>; | ||
}; | ||
|
||
/* Align the partition size to 4096 B to avoid gaps. */ | ||
bt_fast_pair_partition: partition@1e3000 { | ||
reg = <0x1e3000 DT_SIZE_K(4)>; | ||
}; | ||
|
||
storage_partition: partition@1e4000 { | ||
reg = <0x1e4000 DT_SIZE_K(20)>; | ||
}; | ||
}; | ||
}; | ||
|
||
/* Enable the IPC configuration with the Secure Domain to support SUIT DFU. */ | ||
&cpusec_cpuapp_ipc { | ||
status = "okay"; | ||
}; | ||
|
||
/* Enable the Secure Domain signalling mechanism used by IPC to support SUIT DFU. */ | ||
&cpusec_bellboard { | ||
status = "okay"; | ||
}; |
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
7 changes: 7 additions & 0 deletions
7
...oth/fast_pair/locator_tag/sysbuild/configuration/nrf54h20dk_nrf54h20_cpuapp/sysbuild.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,7 @@ | ||
# | ||
# Copyright (c) 2024 Nordic Semiconductor | ||
# | ||
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause | ||
# | ||
|
||
SB_CONFIG_NETCORE_IPC_RADIO=y |