Skip to content

Commit 588b845

Browse files
gordonklaushermabe
authored andcommitted
samples: bluetooth: Enable scanning_while_connecting sample for nRF54H20
Also enable the PSA RNG for 54H20. Signed-off-by: Gordon Klaus <[email protected]>
1 parent dc988ed commit 588b845

File tree

5 files changed

+54
-0
lines changed

5 files changed

+54
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
# Enable PSA RNG
8+
CONFIG_PSA_CRYPTO_DRIVER_OBERON=n
9+
CONFIG_PSA_SSF_CRYPTO_CLIENT=y
10+
CONFIG_SSF_PSA_CRYPTO_SERVICE_ENABLED=y
11+
CONFIG_MBEDTLS_PSA_CRYPTO_C=y
12+
CONFIG_NRF_SECURITY=y
13+
CONFIG_DCACHE=n
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Enable PSA RNG
2+
/ {
3+
chosen {
4+
zephyr,entropy = &psa_rng;
5+
};
6+
7+
psa_rng: psa-rng {
8+
compatible = "zephyr,psa-crypto-rng";
9+
status = "okay";
10+
};
11+
12+
/delete-node/ prng;
13+
};

samples/bluetooth/scanning_while_connecting/sample.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ tests:
1111
- nrf54l15dk/nrf54l15/cpuapp
1212
- nrf54l15dk/nrf54l10/cpuapp
1313
- nrf54l15dk/nrf54l05/cpuapp
14+
- nrf54h20dk/nrf54h20/cpurad
1415
platform_allow:
1516
- nrf52840dk/nrf52840
1617
- nrf5340dk/nrf5340/cpuapp
1718
- nrf54l15dk/nrf54l15/cpuapp
1819
- nrf54l15dk/nrf54l10/cpuapp
1920
- nrf54l15dk/nrf54l05/cpuapp
21+
- nrf54h20dk/nrf54h20/cpurad
2022
tags:
2123
- bluetooth
2224
- ci_build
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#
2+
# Copyright (c) 2025 Nordic Semiconductor
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
# Enable PSA RNG
8+
CONFIG_PSA_CRYPTO_DRIVER_OBERON=n
9+
CONFIG_PSA_SSF_CRYPTO_CLIENT=y
10+
CONFIG_SSF_PSA_CRYPTO_SERVICE_ENABLED=y
11+
CONFIG_MBEDTLS_PSA_CRYPTO_C=y
12+
CONFIG_NRF_SECURITY=y
13+
CONFIG_DCACHE=n
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Enable PSA RNG
2+
/ {
3+
chosen {
4+
zephyr,entropy = &psa_rng;
5+
};
6+
7+
psa_rng: psa-rng {
8+
compatible = "zephyr,psa-crypto-rng";
9+
status = "okay";
10+
};
11+
12+
/delete-node/ prng;
13+
};

0 commit comments

Comments
 (0)