Skip to content

Commit ddc480e

Browse files
authored
Merge pull request NordicSemiconductor#64 from NordicSemiconductor/feature/sd-id
--sd-id param added to *pkg generate*
2 parents 1704d94 + fb2cc7e commit ddc480e

File tree

4 files changed

+48
-7
lines changed

4 files changed

+48
-7
lines changed

README.md

+8-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_5.0.0` | 0x9D
147148

148149
**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.
149150

@@ -158,12 +159,16 @@ The following conventions are used on the table:
158159
Combination | Supported | Notes
159160
--------------| ----------|-------
160161
BL | Yes |
161-
SD | Yes | **SD must be of the same Major Version**
162+
SD | Yes | **See notes 1 and 2 below**
162163
APP | Yes |
163164
BL + SD | Yes |
164165
BL + APP | No | Create two .zip packages instead
165-
BL + SD + APP | Yes |
166-
SD + APP | Yes | **SD must be of the same Major Version**
166+
BL + SD + APP | Yes | **See note 1 below**
167+
SD + APP | Yes | **See notes 1 and 2 below**
168+
169+
**Note 1:** SD must be of the same Major Version as the old BL may not be compatible with the new SD.
170+
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.
167172

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

nordicsemi/__main__.py

+31-1
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,13 @@ def pkg():
389389
'\n|s132_nrf52_3.1.0|0x91|'
390390
'\n|s132_nrf52_4.0.0|0x95|'
391391
'\n|s132_nrf52_4.0.2|0x98|'
392-
'\n|s132_nrf52_4.0.3|0x99|',
392+
'\n|s132_nrf52_4.0.3|0x99|'
393+
'\n|s132_nrf52_5.0.0|0x9D|',
394+
type=click.STRING,
395+
multiple=True)
396+
@click.option('--sd-id',
397+
help='The new SoftDevice ID to be used as --sd-req for the Application update in case the ZIP '
398+
'contains a SoftDevice and an Application.',
393399
type=click.STRING,
394400
multiple=True)
395401
@click.option('--softdevice',
@@ -408,6 +414,7 @@ def generate(zipfile,
408414
bootloader_version,
409415
hw_version,
410416
sd_req,
417+
sd_id,
411418
softdevice,
412419
key_file):
413420
"""
@@ -470,6 +477,16 @@ def generate(zipfile,
470477
if sd_req == 'none':
471478
sd_req = None
472479

480+
if len(sd_id) > 1:
481+
click.echo("Please specify SoftDevice requirements as a comma-separated list: --sd-id 0xXXXX,0xYYYY,...")
482+
return
483+
elif len(sd_id) == 0:
484+
sd_id = None
485+
else:
486+
sd_id = sd_id[0]
487+
if sd_id == 'none':
488+
sd_id = None
489+
473490
# Initial consistency checks
474491
if application_version_internal is not None and application is None:
475492
click.echo("Error: Application version with no image.")
@@ -520,6 +537,18 @@ def generate(zipfile,
520537
raise NordicSemiException("Could not parse value for --sd-req. "
521538
"Hex values should be prefixed with 0x.")
522539

540+
sd_id_list = []
541+
if sd_id is not None:
542+
try:
543+
# This will parse any string starting with 0x as base 16.
544+
sd_id_list = sd_id.split(',')
545+
sd_id_list = map(int_as_text_to_int, sd_id_list)
546+
except ValueError:
547+
raise NordicSemiException("Could not parse value for --sd-id. "
548+
"Hex values should be prefixed with 0x.")
549+
else:
550+
sd_id_list = sd_req_list
551+
523552
signer = Signing()
524553
default_key = signer.load_key(key_file)
525554
if default_key:
@@ -530,6 +559,7 @@ def generate(zipfile,
530559
application_version_internal,
531560
bootloader_version,
532561
sd_req_list,
562+
sd_id_list,
533563
application,
534564
bootloader,
535565
softdevice,

nordicsemi/dfu/package.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ class Package(object):
106106
DEFAULT_APP_VERSION = 0xFFFFFFFF
107107
DEFAULT_BL_VERSION = 0xFFFFFFFF
108108
DEFAULT_SD_REQ = [0xFFFE]
109+
DEFAULT_SD_ID = [0xFFFE]
109110
DEFAULT_DFU_VER = 0.5
110111
MANIFEST_FILENAME = "manifest.json"
111112

@@ -115,6 +116,7 @@ def __init__(self,
115116
app_version=DEFAULT_APP_VERSION,
116117
bl_version=DEFAULT_BL_VERSION,
117118
sd_req=DEFAULT_SD_REQ,
119+
sd_id=DEFAULT_SD_ID,
118120
app_fw=None,
119121
bootloader_fw=None,
120122
softdevice_fw=None,
@@ -127,6 +129,7 @@ def __init__(self,
127129
:param int app_version: App version init-packet field
128130
:param int bl_version: Bootloader version init-packet field
129131
:param list sd_req: Softdevice Requirement init-packet field
132+
:param list sd_id: Softdevice Requirement init-packet field for the Application if softdevice_fw is set
130133
:param str app_fw: Path to application firmware file
131134
:param str bootloader_fw: Path to bootloader firmware file
132135
:param str softdevice_fw: Path to softdevice firmware file
@@ -141,8 +144,8 @@ def __init__(self,
141144
if hw_version is not None:
142145
init_packet_vars[PacketField.HW_VERSION] = hw_version
143146

144-
if sd_req is not None:
145-
init_packet_vars[PacketField.REQUIRED_SOFTDEVICES_ARRAY] = sd_req
147+
if sd_id is not None:
148+
init_packet_vars[PacketField.REQUIRED_SOFTDEVICES_ARRAY] = sd_id
146149

147150
self.firmwares_data = {}
148151

@@ -152,6 +155,9 @@ def __init__(self,
152155
filename=app_fw,
153156
init_packet_data=init_packet_vars)
154157

158+
if sd_req is not None:
159+
init_packet_vars[PacketField.REQUIRED_SOFTDEVICES_ARRAY] = sd_req
160+
155161
if bootloader_fw:
156162
self.__add_firmware_info(firmware_type=HexType.BOOTLOADER,
157163
firmware_version=bl_version,

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.0.0"
40+
NRFUTIL_VERSION = "3.1.0"

0 commit comments

Comments
 (0)