Skip to content
This repository was archived by the owner on Jan 17, 2023. It is now read-only.

Update sd-req list #156

Merged
merged 2 commits into from
Aug 22, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ The following table lists the FWIDs which are used to identify the SoftDevice ve

SoftDevice | FWID (sd-req)
----------------------| -------------
`s112_nrf51_6.0.0` | 0xA7
`s112_nrf52_6.0.0` | 0xA7
`s112_nrf52_6.1.0` | 0xB0
`s130_nrf51_1.0.0` | 0x67
`s130_nrf51_2.0.0` | 0x80
`s132_nrf52_2.0.0` | 0x81
Expand All @@ -152,7 +153,9 @@ SoftDevice | FWID (sd-req)
`s132_nrf52_5.0.0` | 0x9D
`s132_nrf52_5.1.0` | 0xA5
`s132_nrf52_6.0.0` | 0xA8
`s132_nrf52_6.1.0` | 0xAF
`s140_nrf52_6.0.0` | 0xA9
`s140_nrf52_6.1.0` | 0xAE

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

Expand Down
7 changes: 5 additions & 2 deletions nordicsemi/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,8 @@ def pkg():
'list must be a two- or four-digit hex number prefixed with \"0x\" (e.g. \"0x12\", '
'\"0x1234\").\n'
'A non-exhaustive list of well-known values to use with this option follows:'
'\n|s112_nrf51_6.0.0|0xA7|'
'\n|s112_nrf52_6.0.0|0xA7|'
'\n|s112_nrf52_6.1.0|0xB0|'
'\n|s130_nrf51_1.0.0|0x67|'
'\n|s130_nrf51_2.0.0|0x80|'
'\n|s132_nrf52_2.0.0|0x81|'
Expand All @@ -438,7 +439,9 @@ def pkg():
'\n|s132_nrf52_5.0.0|0x9D|'
'\n|s132_nrf52_5.1.0|0xA5|'
'\n|s132_nrf52_6.0.0|0xA8|'
'\n|s140_nrf52_6.0.0|0xA9|',
'\n|s132_nrf52_6.1.0|0xAF|'
'\n|s140_nrf52_6.0.0|0xA9|'
'\n|s140_nrf52_6.1.0|0xAE|',
type=click.STRING,
required=True,
multiple=True)
Expand Down