Skip to content

Commit 289fc44

Browse files
kapi-nonordicjm
authored andcommitted
samples: bluetooth: fast_pair: input_device: add support for nrf54h20dk
Added nRF54H20 DK support to the Fast Pair Input Device sample. Ref: NCSDK-29602 Signed-off-by: Kamil Piszczek <[email protected]>
1 parent 992213e commit 289fc44

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
/*
2+
* Copyright (c) 2024 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
&mram1x {
8+
/delete-node/ cpuapp_rw_partitions;
9+
10+
cpuapp_rw_partitions: cpuapp-rw-partitions {
11+
compatible = "nordic,owned-partitions", "fixed-partitions";
12+
status = "okay";
13+
perm-read;
14+
perm-write;
15+
perm-secure;
16+
#address-cells = <1>;
17+
#size-cells = <1>;
18+
19+
dfu_partition: partition@100000 {
20+
reg = <0x100000 DT_SIZE_K(908)>;
21+
};
22+
23+
storage_partition: partition@1e3000 {
24+
reg = <0x1e3000 DT_SIZE_K(20)>;
25+
};
26+
27+
bt_fast_pair_partition: partition@1e8fb8 {
28+
label = "bt_fast_pair";
29+
reg = <0x1e8fb8 0x48>;
30+
};
31+
};
32+
};

samples/bluetooth/fast_pair/input_device/sample.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ tests:
1111
- nrf5340dk/nrf5340/cpuapp
1212
- nrf5340dk/nrf5340/cpuapp/ns
1313
- nrf54l15dk/nrf54l15/cpuapp
14+
- nrf54h20dk/nrf54h20/cpuapp
1415
platform_allow:
1516
- nrf52dk/nrf52832
1617
- nrf52840dk/nrf52840
1718
- nrf5340dk/nrf5340/cpuapp
1819
- nrf5340dk/nrf5340/cpuapp/ns
1920
- nrf54l15dk/nrf54l15/cpuapp
21+
- nrf54h20dk/nrf54h20/cpuapp
2022
tags: bluetooth ci_build sysbuild

0 commit comments

Comments
 (0)