You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+20-4
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ This application and its library offer the following features:
13
13
* Cryptographic key generation, management and storage
14
14
* Bootloader DFU settings generation and display
15
15
* Device Firmware Update procedure over Bluetooth Low Energy
16
+
* Device Firmware Update procedure over Thread
16
17
17
18
## License
18
19
@@ -41,7 +42,7 @@ This will also retrieve and install all additional required packages.
41
42
42
43
**Note**: Please refer to the [pc-ble-driver-py PyPI installation note on Windows](https://github.com/NordicSemiconductor/pc-ble-driver-py#installing-from-pypi) if you are running nrfutil on this operating system.
43
44
44
-
**Note**: To use the `dfu ble` option you will need to set up your boards to be able to communicate with your computer. You can find additional information here: [Hardware setup](https://github.com/NordicSemiconductor/pc-ble-driver/blob/master/Installation.md#hardware-setup).
45
+
**Note**: To use the `dfu ble`or `dfu thread`option you will need to set up your boards to be able to communicate with your computer. You can find additional information here: [Hardware setup](https://github.com/NordicSemiconductor/pc-ble-driver/blob/master/Installation.md#hardware-setup).
**Note**: Please refer to the [pc-ble-driver-py PyPI installation note on Windows](https://github.com/NordicSemiconductor/pc-ble-driver-py#installing-from-pypi) if you are running nrfutil on this operating system.
101
102
102
-
**Note**: To use the `dfu ble` option you will need to set up your boards to be able to communicate with your computer. You can find additional information here: [Hardware setup](https://github.com/NordicSemiconductor/pc-ble-driver/blob/master/Installation.md#hardware-setup).
103
+
**Note**: To use the `dfu ble`or `dfu thread`option you will need to set up your boards to be able to communicate with your computer. You can find additional information here: [Hardware setup](https://github.com/NordicSemiconductor/pc-ble-driver/blob/master/Installation.md#hardware-setup).
103
104
104
105
## Usage
105
106
106
-
To get info on usage of nrfutil:
107
+
To get info on usage of nrfutil:
107
108
```
108
109
nrfutil --help
109
110
```
@@ -144,6 +145,8 @@ SoftDevice | FWID (sd-req)
144
145
`s132_nrf52_4.0.2` | 0x98
145
146
`s132_nrf52_4.0.3` | 0x99
146
147
148
+
**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.
149
+
147
150
Not all combinations of Bootloader, SoftDevice and Application are possible when generating a package. The table below summarizes the support for different combinations.
The `-f` option instructs nrfutil to actually program the board connected to COM3 with the connectivity software required to operate as a serialized SoftDevice. Use with caution as this will overwrite the contents of the IC's flash memory.
184
187
188
+
##### Thread
189
+
**Note**: DFU over Thread is experimental
190
+
191
+
Perform a full DFU procedure over a Thread. This command takes several options that you can list using:
192
+
```
193
+
nrfutil dfu thread --help
194
+
```
195
+
Below is an example of the execution of a DFU procedure on all devices in a Thread network using a file generated above and a connectivity IC connected to COM3.
196
+
```
197
+
nrfutil dfu ble -pkg app_dfu_package.zip -p COM3 -f
198
+
```
199
+
The `-f` option instructs nrfutil to actually program the board connected to COM3 with the connectivity software required to operate as a network co-processor (NCP). Use with caution as this will overwrite the contents of the IC's flash memory.
200
+
185
201
##### serial
186
202
Perform a full DFU procedure over a serial (UART) line. This command takes several options that you can list using:
0 commit comments