Skip to content

Commit 196691d

Browse files
dchat-nordicnordicjm
authored andcommitted
samples: bluetooth: Add support for nRF54L10 and nRF54L05
Add support for nRF54L10/05 emulated targets in scope. Jira: NCSDK-31311 Signed-off-by: Dominik Chat <[email protected]>
1 parent 58a3132 commit 196691d

File tree

31 files changed

+206
-0
lines changed

31 files changed

+206
-0
lines changed

doc/nrf/releases_and_maturity/releases/release-notes-changelog.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -400,8 +400,25 @@ Bluetooth samples
400400

401401
* Support for the ``nrf54l15dk/nrf54l05/cpuapp`` and ``nrf54l15dk/nrf54l10/cpuapp`` board targets in the following samples:
402402

403+
* :ref:`central_and_peripheral_hrs`
404+
* :ref:`central_bas`
403405
* :ref:`bluetooth_central_hids`
406+
* :ref:`bluetooth_central_hr_coded`
407+
* :ref:`bluetooth_central_dfu_smp`
408+
* :ref:`central_uart`
409+
* :ref:`multiple_adv_sets`
410+
* :ref:`peripheral_bms`
411+
* :ref:`peripheral_cgms`
412+
* :ref:`peripheral_cts_client`
413+
* :ref:`peripheral_gatt_dm`
404414
* :ref:`peripheral_hids_keyboard`
415+
* :ref:`peripheral_hr_coded`
416+
* :ref:`peripheral_mds`
417+
* :ref:`peripheral_nfc_pairing`
418+
* :ref:`peripheral_rscs`
419+
* :ref:`peripheral_status`
420+
* :ref:`shell_bt_nus`
421+
* :ref:`ble_throughput`
405422

406423
* The Advertising Coding Selection feature to the following samples:
407424

samples/bluetooth/central_and_peripheral_hr/sample.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,17 @@ tests:
1010
- nrf52840dk/nrf52840
1111
- nrf5340dk/nrf5340/cpuapp
1212
- nrf5340dk/nrf5340/cpuapp/ns
13+
- nrf54l15dk/nrf54l05/cpuapp
14+
- nrf54l15dk/nrf54l10/cpuapp
1315
- nrf54l15dk/nrf54l15/cpuapp
1416
- nrf54h20dk/nrf54h20/cpuapp
1517
platform_allow:
1618
- nrf52dk/nrf52832
1719
- nrf52840dk/nrf52840
1820
- nrf5340dk/nrf5340/cpuapp
1921
- nrf5340dk/nrf5340/cpuapp/ns
22+
- nrf54l15dk/nrf54l05/cpuapp
23+
- nrf54l15dk/nrf54l10/cpuapp
2024
- nrf54l15dk/nrf54l15/cpuapp
2125
- nrf54h20dk/nrf54h20/cpuapp
2226
tags:

samples/bluetooth/central_bas/sample.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,17 @@ tests:
2222
- nrf52840dk/nrf52840
2323
- nrf5340dk/nrf5340/cpuapp
2424
- nrf5340dk/nrf5340/cpuapp/ns
25+
- nrf54l15dk/nrf54l05/cpuapp
26+
- nrf54l15dk/nrf54l10/cpuapp
2527
- nrf54l15dk/nrf54l15/cpuapp
2628
- nrf54h20dk/nrf54h20/cpuapp
2729
platform_allow:
2830
- nrf52dk/nrf52832
2931
- nrf52840dk/nrf52840
3032
- nrf5340dk/nrf5340/cpuapp
3133
- nrf5340dk/nrf5340/cpuapp/ns
34+
- nrf54l15dk/nrf54l05/cpuapp
35+
- nrf54l15dk/nrf54l10/cpuapp
3236
- nrf54l15dk/nrf54l15/cpuapp
3337
- nrf54h20dk/nrf54h20/cpuapp
3438
tags:

samples/bluetooth/central_hr_coded/sample.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ tests:
99
integration_platforms:
1010
- nrf52840dk/nrf52840
1111
- nrf5340dk/nrf5340/cpuapp
12+
- nrf54l15dk/nrf54l05/cpuapp
13+
- nrf54l15dk/nrf54l10/cpuapp
1214
- nrf54l15dk/nrf54l15/cpuapp
1315
- nrf54h20dk/nrf54h20/cpuapp
1416
platform_allow:
1517
- nrf52840dk/nrf52840
1618
- nrf5340dk/nrf5340/cpuapp
19+
- nrf54l15dk/nrf54l05/cpuapp
20+
- nrf54l15dk/nrf54l10/cpuapp
1721
- nrf54l15dk/nrf54l15/cpuapp
1822
- nrf54h20dk/nrf54h20/cpuapp
1923
tags:

samples/bluetooth/central_smp_client/sample.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,14 @@ tests:
88
integration_platforms:
99
- nrf52dk/nrf52832
1010
- nrf52840dk/nrf52840
11+
- nrf54l15dk/nrf54l05/cpuapp
12+
- nrf54l15dk/nrf54l10/cpuapp
1113
- nrf54l15dk/nrf54l15/cpuapp
1214
platform_allow:
1315
- nrf52dk/nrf52832
1416
- nrf52840dk/nrf52840
17+
- nrf54l15dk/nrf54l05/cpuapp
18+
- nrf54l15dk/nrf54l10/cpuapp
1519
- nrf54l15dk/nrf54l15/cpuapp
1620
tags:
1721
- bluetooth
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#
2+
# Copyright (c) 2024 Nordic Semiconductor
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
# Disable the unsupported driver
8+
CONFIG_NRFX_UARTE0=n
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/*
2+
* Copyright (c) 2024 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/ {
8+
chosen {
9+
nordic,nus-uart = &uart20;
10+
};
11+
};
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#
2+
# Copyright (c) 2024 Nordic Semiconductor
3+
#
4+
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
#
6+
7+
# Disable the unsupported driver
8+
CONFIG_NRFX_UARTE0=n
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/*
2+
* Copyright (c) 2024 Nordic Semiconductor ASA
3+
*
4+
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5+
*/
6+
7+
/ {
8+
chosen {
9+
nordic,nus-uart = &uart20;
10+
};
11+
};

samples/bluetooth/central_uart/sample.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ tests:
1111
- nrf5340dk/nrf5340/cpuapp
1212
- nrf5340dk/nrf5340/cpuapp/ns
1313
- nrf21540dk/nrf52840
14+
- nrf54l15dk/nrf54l05/cpuapp
15+
- nrf54l15dk/nrf54l10/cpuapp
1416
- nrf54l15dk/nrf54l15/cpuapp
1517
- nrf54h20dk/nrf54h20/cpuapp
1618
platform_allow:
@@ -19,6 +21,8 @@ tests:
1921
- nrf5340dk/nrf5340/cpuapp
2022
- nrf5340dk/nrf5340/cpuapp/ns
2123
- nrf21540dk/nrf52840
24+
- nrf54l15dk/nrf54l05/cpuapp
25+
- nrf54l15dk/nrf54l10/cpuapp
2226
- nrf54l15dk/nrf54l15/cpuapp
2327
- nrf54h20dk/nrf54h20/cpuapp
2428
tags:

0 commit comments

Comments
 (0)