Skip to content

Commit 72e325b

Browse files
authored
Add nRF54LS05 DK support (#412)
* Add nRF54LS05 DK support * Bump up shared * change ref to peripheral_power_profiling * update flows list * eslint * update hello world regex
1 parent cbb470a commit 72e325b

13 files changed

Lines changed: 37531 additions & 93 deletions

File tree

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.9.0 - 2026-04-23
2+
3+
### Added
4+
5+
- Support for the nRF54LS05 DK.
6+
17
## 1.8.0 - 2026-03-10
28

39
### Added

package-lock.json

Lines changed: 212 additions & 89 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pc-nrfconnect-quickstart",
3-
"version": "1.8.0",
3+
"version": "1.9.0",
44
"description": "Get started with a new Nordic Semiconductor device",
55
"displayName": "Quick Start",
66
"homepage": "https://github.com/nordicsemi/pc-nrfconnect-quickstart",
@@ -54,6 +54,6 @@
5454
},
5555
"prettier": "@nordicsemiconductor/pc-nrfconnect-shared/config/prettier.config.js",
5656
"devDependencies": {
57-
"@nordicsemiconductor/pc-nrfconnect-shared": "^244.0.0"
57+
"@nordicsemiconductor/pc-nrfconnect-shared": "^246.0.0"
5858
}
5959
}

resources/devices/firmware/nrf54ls05dk_hello_world.hex

Lines changed: 1559 additions & 0 deletions
Large diffs are not rendered by default.

resources/devices/firmware/nrf54ls05dk_lbs.hex

Lines changed: 11390 additions & 0 deletions
Large diffs are not rendered by default.

resources/devices/firmware/nrf54ls05dk_peripheral_uart.hex

Lines changed: 13280 additions & 0 deletions
Large diffs are not rendered by default.

resources/devices/firmware/nrf54ls05dk_power_profiling.hex

Lines changed: 10726 additions & 0 deletions
Large diffs are not rendered by default.
344 KB
Loading

src/features/flows/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import type React from 'react';
99
import NRF52 from './nRF52';
1010
import NRF54L15 from './nRF54L15';
1111
import NRF54LM20 from './nRF54LM20';
12+
import NRF54LS05 from './nRF54LS05';
1213
import NRF54LV10 from './nRF54LV10';
1314
import NRF5340 from './nRF5340';
1415
import NRF7002 from './nRF7002';
@@ -38,5 +39,6 @@ export default {
3839
[NRF54L15.device]: NRF54L15.flow,
3940
[NRF54LM20.device]: NRF54LM20.flow,
4041
[NRF54LV10.device]: NRF54LV10.flow,
42+
[NRF54LS05.device]: NRF54LS05.flow,
4143
[THINGY91X.device]: THINGY91X.flow,
4244
} as Record<string, Flow[]>;

src/features/flows/nRF54LM20/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ const developConfig = [
266266
},
267267
{
268268
ref: 'Peripheral Power Profiling',
269-
sampleSource: 'nrf/samples/bluetooth/peripheral_uart',
269+
sampleSource: 'nrf/samples/bluetooth/peripheral_power_profiling',
270270
},
271271
{
272272
ref: 'Peripheral UART',

0 commit comments

Comments
 (0)