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

Commit

Permalink
Merge pull request #141 from mathiasap/NCP-1626/Update-sd-req-fwids
Browse files Browse the repository at this point in the history
Added FWID for softdevice s112, s132, s140 (6.0.0)
  • Loading branch information
bihanssen committed May 15, 2018
2 parents 122cd56 + edbbb77 commit 62d1e6c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -136,6 +136,7 @@ The following table lists the FWIDs which are used to identify the SoftDevice ve

SoftDevice | FWID (sd-req)
----------------------| -------------
`s112_nrf51_6.0.0` | 0xA7
`s130_nrf51_1.0.0` | 0x67
`s130_nrf51_2.0.0` | 0x80
`s132_nrf52_2.0.0` | 0x81
Expand All @@ -150,6 +151,8 @@ SoftDevice | FWID (sd-req)
`s132_nrf52_4.0.5` | 0x9F
`s132_nrf52_5.0.0` | 0x9D
`s132_nrf52_5.1.0` | 0xA5
`s132_nrf52_6.0.0` | 0xA8
`s140_nrf52_6.0.0` | 0xA9

**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
5 changes: 4 additions & 1 deletion nordicsemi/__main__.py
Expand Up @@ -422,6 +422,7 @@ 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|s130_nrf51_1.0.0|0x67|'
'\n|s130_nrf51_2.0.0|0x80|'
'\n|s132_nrf52_2.0.0|0x81|'
Expand All @@ -435,7 +436,9 @@ def pkg():
'\n|s132_nrf52_4.0.4|0x9E|'
'\n|s132_nrf52_4.0.5|0x9F|'
'\n|s132_nrf52_5.0.0|0x9D|'
'\n|s132_nrf52_5.1.0|0xA5|',
'\n|s132_nrf52_5.1.0|0xA5|'
'\n|s132_nrf52_6.0.0|0xA8|'
'\n|s140_nrf52_6.0.0|0xA9|',
type=click.STRING,
required=True,
multiple=True)
Expand Down

0 comments on commit 62d1e6c

Please sign in to comment.