Skip to content

Commit 39bc36f

Browse files
ahasztagrlubos
authored andcommitted
samples: dfu_target: Add support for nRF54L15DK
This commit adds support for the nrf54l15dk/nrf54l15/cpuapp board in the dfu_target sample. Signed-off-by: Artur Hadasz <[email protected]>
1 parent f65122f commit 39bc36f

File tree

3 files changed

+79
-0
lines changed

3 files changed

+79
-0
lines changed

samples/dfu/dfu_target/README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ After programming the sample to your development kit, perform the following step
7777
+-------------------+------------------+
7878
| nRF54H20 DK | ``0xe092000`` |
7979
+-------------------+------------------+
80+
| nRF54L15 DK | ``0xf2000`` |
81+
+-------------------+------------------+
8082

8183
#. Upload the second version of the image to the device using ``nrfutil device``:
8284

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
EMPTY_0:
2+
address: 0xd800
3+
end_address: 0xe000
4+
placement:
5+
after:
6+
- mcuboot
7+
region: flash_primary
8+
size: 0x800
9+
EMPTY_1:
10+
address: 0x164000
11+
end_address: 0x165000
12+
placement:
13+
after:
14+
- mcuboot_secondary
15+
region: flash_primary
16+
size: 0x1000
17+
app:
18+
address: 0xe800
19+
end_address: 0xb9000
20+
region: flash_primary
21+
size: 0xaa800
22+
bootconf:
23+
address: 0xffd080
24+
end_address: 0xffd084
25+
region: bootconf
26+
size: 0x4
27+
mcuboot:
28+
address: 0x0
29+
end_address: 0xd800
30+
placement:
31+
before:
32+
- mcuboot_primary
33+
region: flash_primary
34+
size: 0xd800
35+
mcuboot_pad:
36+
address: 0xe000
37+
end_address: 0xe800
38+
placement:
39+
before:
40+
- mcuboot_primary_app
41+
region: flash_primary
42+
size: 0x800
43+
mcuboot_primary:
44+
address: 0xe000
45+
end_address: 0x80000
46+
orig_span: &id001
47+
- app
48+
- mcuboot_pad
49+
region: flash_primary
50+
sharers: 0x1
51+
size: 0x72000
52+
span: *id001
53+
mcuboot_primary_app:
54+
address: 0xe800
55+
end_address: 0x80000
56+
orig_span: &id002
57+
- app
58+
region: flash_primary
59+
size: 0x71800
60+
span: *id002
61+
mcuboot_secondary:
62+
address: 0x80000
63+
end_address: 0xf2000
64+
placement:
65+
after:
66+
- mcuboot_primary
67+
region: flash_primary
68+
share_size:
69+
- mcuboot_primary
70+
size: 0x72000
71+
dfu_target_helper:
72+
address: 0xf2000
73+
end_address: 0x164000
74+
region: flash_primary
75+
size: 0x72000

samples/dfu/dfu_target/sample.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ common:
1111
platform_allow:
1212
- nrf52840dk/nrf52840
1313
- nrf54h20dk/nrf54h20/cpuapp
14+
- nrf54l15dk/nrf54l15/cpuapp
1415
build_only: true
1516
sysbuild: true
1617
tests:
@@ -21,3 +22,4 @@ tests:
2122
integration_platforms:
2223
- nrf52840dk/nrf52840
2324
- nrf54h20dk/nrf54h20/cpuapp
25+
- nrf54l15dk/nrf54l15/cpuapp

0 commit comments

Comments
 (0)