Skip to content

Commit 2de577f

Browse files
authored
Merge pull request NordicSemiconductor#82 from NordicSemiconductor/feature/sd-id
SD-ID updated
2 parents 5266adc + 810eac3 commit 2de577f

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ SoftDevice | FWID (sd-req)
144144
`s132_nrf52_4.0.0` | 0x95
145145
`s132_nrf52_4.0.2` | 0x98
146146
`s132_nrf52_4.0.3` | 0x99
147+
`s132_nrf52_4.0.4` | 0x9E
147148
`s132_nrf52_5.0.0` | 0x9D
148149

149150
**Note**: The Thread stack doesn't use a SoftDevice but --sd-req option is required for compatibility reasons. You can provide any value for the option as it is ignored during DFU.
@@ -159,16 +160,18 @@ The following conventions are used on the table:
159160
Combination | Supported | Notes
160161
--------------| ----------|-------
161162
BL | Yes |
162-
SD | Yes | **See notes 1 and 2 below**
163+
SD | Yes | **See note 1 below**
163164
APP | Yes |
164165
BL + SD | Yes |
165166
BL + APP | No | Create two .zip packages instead
166-
BL + SD + APP | Yes | **See note 1 below**
167+
BL + SD + APP | Yes | **See note 2 below**
167168
SD + APP | Yes | **See notes 1 and 2 below**
168169

169170
**Note 1:** SD must be of the same Major Version as the old BL may not be compatible with the new SD.
170171

171-
**Note 2:** When updating BL + SD + APP the update is done in 2 following connections, unless a custom bootloader is used. First the BL + SD is updated, then the bootloader will disconnect and the new BL will start advertising. Second connection to the new bootloader will update the APP. However, the two SDs may have different IDs. The first update requires --sd-req to be set to the ID of the old SD while update of the APP requires the ID of the new SD. In that case the new ID can be set using ```--sd-id``` parameter.
172+
**Note 2:** When updating SD (+ BL) + APP the update is done in 2 following connections, unless a custom bootloader is used. First the SD (+ BL) is updated, then the bootloader will disconnect and the (new) BL will start advertising. Second connection to the bootloader will update the APP. However, the two SDs may have different IDs. The first update requires `--sd-req` to be set to the ID of the old SD. Update of the APP requires the ID of the new SD. In that case the new ID must be set using `--sd-id` parameter. This parameter is
173+
was added in nrfutil 3.1.0 and is required since 3.2.0 in case the package should contain SD (+ BL) + APP. Also, since version 3.2.0 the new ID is copied to `--sd-req` list so that
174+
in case of a link loss during APP update the DFU process can be restarted. In that case the new SD would overwrite itself, so `--sd-req` must contain also the ID of the new SD.
172175

173176
##### display
174177
Use this option to display the contents of a DFU package in a .zip file.

nordicsemi/__main__.py

+13
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,7 @@ def pkg():
390390
'\n|s132_nrf52_4.0.0|0x95|'
391391
'\n|s132_nrf52_4.0.2|0x98|'
392392
'\n|s132_nrf52_4.0.3|0x99|'
393+
'\n|s132_nrf52_4.0.4|0x9E|'
393394
'\n|s132_nrf52_5.0.0|0x9D|',
394395
type=click.STRING,
395396
multiple=True)
@@ -527,6 +528,10 @@ def generate(zipfile,
527528
click.echo("Error: --bootloader-version required with bootloader image.")
528529
return
529530

531+
if application is not None and softdevice is not None and sd_id is None:
532+
click.echo("Error: --sd-id required with softdevice and application images.")
533+
return
534+
530535
sd_req_list = []
531536
if sd_req is not None:
532537
try:
@@ -543,6 +548,14 @@ def generate(zipfile,
543548
# This will parse any string starting with 0x as base 16.
544549
sd_id_list = sd_id.split(',')
545550
sd_id_list = map(int_as_text_to_int, sd_id_list)
551+
552+
# Copy all IDs from sd_id_list to sd_req_list, without duplicates.
553+
# This ensures that the softdevice update can be repeated in case
554+
# SD+(BL)+App update terminates during application update after the
555+
# softdevice was already updated (with new ID). Such update would
556+
# have to be repeated and the softdevice would have to be sent again,
557+
# this time updating itself.
558+
sd_req_list += set(sd_id_list) - set(sd_req_list)
546559
except ValueError:
547560
raise NordicSemiException("Could not parse value for --sd-id. "
548561
"Hex values should be prefixed with 0x.")

nordicsemi/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737

3838
""" Version definition for nrfutil. """
3939

40-
NRFUTIL_VERSION = "3.1.0"
40+
NRFUTIL_VERSION = "3.2.0"

0 commit comments

Comments
 (0)