@@ -49,7 +49,7 @@ To test the DFU over Matter, you need to complete the following steps:
49
49
50
50
4. Run OTA Provider application with _matter.ota_ replaced with the path to the
51
51
Matter OTA image which you wish to provide to the Matter device. Note that
52
- the Matter OTA image is, by default, generated at _zephyr/matter.ota_ in the
52
+ the Matter OTA image is, by default, generated in the
53
53
example's build directory:
54
54
55
55
```
@@ -180,10 +180,10 @@ Complete the following steps to perform DFU using mcumgr:
180
180
that the Bluetooth LE advertising has started. See the user interface
181
181
section in the example documentation to check the LED number.
182
182
4. Upload the application firmware image to the device by running the following
183
- command in your example directory:
183
+ command in your example directory with the <application_name> replaced by your application name, for example `lock` :
184
184
185
185
```
186
- sudo mcumgr --conntype ble --hci ble-hci-number --connstring peer_name='ble-device-name' image upload build/zephyr/app_update .bin -n 0 -w 1
186
+ sudo mcumgr --conntype ble --hci ble-hci-number --connstring peer_name='ble-device-name' image upload build/<application_name>/ zephyr/zephyr.signed .bin -n 0 -w 1
187
187
```
188
188
189
189
The operation can take a few minutes. Wait until the progress bar reaches
@@ -246,10 +246,10 @@ Complete the following steps to perform DFU using mcumgr:
246
246
go straight to the step 8.
247
247
248
248
a. Upload the network core firmware image to the device by running the
249
- following command in your example directory:
249
+ following command in your example directory with the <network_image_name> replaced by your network image name, for example `ipc_radio` :
250
250
251
251
```
252
- sudo mcumgr --conntype ble --hci ble-hci-number --connstring peer_name='ble-device-name' image upload build/zephyr/net_core_app_update .bin -n 1 -w 1
252
+ sudo mcumgr --conntype ble --hci ble-hci-number --connstring peer_name='ble-device-name' image upload build/signed_by_mcuboot_and_b0_<network_image_name> .bin -n 1 -w 1
253
253
```
254
254
255
255
The operation can take a few minutes. Wait until the progress bar reaches
0 commit comments