Skip to content

Commit 0f7752a

Browse files
committed
Fixing style
1 parent ef46e21 commit 0f7752a

File tree

3 files changed

+75
-75
lines changed

3 files changed

+75
-75
lines changed

docs/guides/nrfconnect_examples_software_update.md

+73-73
Original file line numberDiff line numberDiff line change
@@ -229,91 +229,91 @@ Complete the following steps to perform DFU using mcumgr:
229229
Split status: N/A (0)
230230
```
231231

232-
7. If you are using the nRF5340DK board, which supports multi-image device firmware upgrade,
233-
complete the following substeps. If you are not using one, go straight to the step 8.
232+
7. If you are using the nRF5340DK board, which supports multi-image device
233+
firmware upgrade, complete the following substeps. If you are not using one,
234+
go straight to the step 8.
234235

235-
a. Upload the network core firmware image to the device by running the
236-
following command in your example directory:
236+
a. Upload the network core firmware image to the device by running the
237+
following command in your example directory:
237238

238-
```
239-
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
240-
```
239+
```
240+
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
241+
```
241242

242-
The operation can take a few minutes. Wait until the progress bar reaches
243-
100%.
243+
The operation can take a few minutes. Wait until the progress bar reaches
244+
100%.
244245

245-
b. Obtain the list of images present in the device memory by running following
246-
command:
246+
b. Obtain the list of images present in the device memory by running
247+
following command:
247248

248-
```
249-
sudo mcumgr --conntype ble --hci ble-hci-number --connstring peer_name='ble-device-name' image list
250-
```
249+
```
250+
sudo mcumgr --conntype ble --hci ble-hci-number --connstring peer_name='ble-device-name' image list
251+
```
251252

252-
The displayed output contains the old application image in slot 0 that is
253-
currently active, the new application image in slot 1 in pending state, and
254-
the new network image which is in slot 1 and not active yet (flags field
255-
empty):
253+
The displayed output contains the old application image in slot 0 that is
254+
currently active, the new application image in slot 1 in pending state, and
255+
the new network image which is in slot 1 and not active yet (flags field
256+
empty):
256257

257-
```
258-
Images:
259-
image=0 slot=0
260-
version: 0.0.0
261-
bootable: true
262-
flags: active confirmed
263-
hash: 7bb0e909a846e833465cbb44c581cf045413a5446c6953a30a3dcc2c3ad51764
264-
image=0 slot=1
265-
version: 0.0.0
266-
bootable: true
267-
flags: pending
268-
hash: cbd58fc3821e749d3abfb00b3069f98c078824735f1b2a333e8a1579971e7de1
269-
image=1 slot=1
270-
version: 0.0.0
271-
bootable: true
272-
flags:
273-
hash: d9e31e73cb7a959c26411250c2b3028f3510ae88a4549ae3f2f097c3e7530f48
274-
Split status: N/A (0)
275-
```
258+
```
259+
Images:
260+
image=0 slot=0
261+
version: 0.0.0
262+
bootable: true
263+
flags: active confirmed
264+
hash: 7bb0e909a846e833465cbb44c581cf045413a5446c6953a30a3dcc2c3ad51764
265+
image=0 slot=1
266+
version: 0.0.0
267+
bootable: true
268+
flags: pending
269+
hash: cbd58fc3821e749d3abfb00b3069f98c078824735f1b2a333e8a1579971e7de1
270+
image=1 slot=1
271+
version: 0.0.0
272+
bootable: true
273+
flags:
274+
hash: d9e31e73cb7a959c26411250c2b3028f3510ae88a4549ae3f2f097c3e7530f48
275+
Split status: N/A (0)
276+
```
277+
278+
c. Swap the firmware images by calling the following method with
279+
`image-hash` replaced by the image present in the slot 1 hash (for example,
280+
`d9e31e73cb7a959c26411250c2b3028f3510ae88a4549ae3f2f097c3e7530f48`):
281+
282+
```
283+
sudo mcumgr --conntype ble --hci ble-hci-number --connstring peer_name='ble-device-name' image test image-hash
284+
```
276285

277-
c. Swap the firmware images by calling the following method with `image-hash`
278-
replaced by the image present in the slot 1 hash (for example,
279-
`d9e31e73cb7a959c26411250c2b3028f3510ae88a4549ae3f2f097c3e7530f48`):
286+
You can observe that the `flags:` field in the image for slot 1 changes
287+
value to `pending`:
280288

281-
```
282-
sudo mcumgr --conntype ble --hci ble-hci-number --connstring peer_name='ble-device-name' image test image-hash
283-
```
289+
```
290+
Images:
291+
image=0 slot=0
292+
version: 0.0.0
293+
bootable: true
294+
flags: active confirmed
295+
hash: 7bb0e909a846e833465cbb44c581cf045413a5446c6953a30a3dcc2c3ad51764
296+
image=0 slot=1
297+
version: 0.0.0
298+
bootable: true
299+
flags: pending
300+
hash: cbd58fc3821e749d3abfb00b3069f98c078824735f1b2a333e8a1579971e7de1
301+
image=1 slot=1
302+
version: 0.0.0
303+
bootable: true
304+
flags: pending
305+
hash: d9e31e73cb7a959c26411250c2b3028f3510ae88a4549ae3f2f097c3e7530f48
306+
Split status: N/A (0)
307+
```
284308

285-
You can observe that the `flags:` field in the image for slot 1 changes
286-
value to `pending`:
309+
8. Reset the device with the following command to let the bootloader swap
310+
images:
287311

288312
```
289-
Images:
290-
image=0 slot=0
291-
version: 0.0.0
292-
bootable: true
293-
flags: active confirmed
294-
hash: 7bb0e909a846e833465cbb44c581cf045413a5446c6953a30a3dcc2c3ad51764
295-
image=0 slot=1
296-
version: 0.0.0
297-
bootable: true
298-
flags: pending
299-
hash: cbd58fc3821e749d3abfb00b3069f98c078824735f1b2a333e8a1579971e7de1
300-
image=1 slot=1
301-
version: 0.0.0
302-
bootable: true
303-
flags: pending
304-
hash: d9e31e73cb7a959c26411250c2b3028f3510ae88a4549ae3f2f097c3e7530f48
305-
Split status: N/A (0)
313+
sudo mcumgr --conntype ble --hci ble-hci-number --connstring peer_name='ble-device-name' reset
306314
```
307315

308-
8. Reset the device with the following command to let the bootloader swap
309-
images:
310-
311-
```
312-
sudo mcumgr --conntype ble --hci ble-hci-number --connstring peer_name='ble-device-name' reset
313-
```
314-
315-
316-
The device is reset and the following notifications appear in its console:
316+
The device is reset and the following notifications appear in its console:
317317

318318
```
319319
*** Booting Zephyr OS build zephyr-v2.5.0-1101-ga9d3aef65424 ***
@@ -324,8 +324,8 @@ Complete the following steps to perform DFU using mcumgr:
324324
I: Swap type: test
325325
```
326326

327-
Swapping operation can take some time, and after it completes, the new
328-
firmware is booted.
327+
Swapping operation can take some time, and after it completes, the new firmware
328+
is booted.
329329

330330
Visit the
331331
[mcumgr image management](https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/device_mgmt/indexhtml#image-management)

src/include/platform/TestOnlyCommissionableDataProvider.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
*/
1717
#pragma once
1818

19-
#include <platform/CommissionableDataProvider.h>
2019
#include <lib/core/CHIPError.h>
2120
#include <lib/support/Span.h>
21+
#include <platform/CommissionableDataProvider.h>
2222

2323
namespace chip {
2424
namespace DeviceLayer {

src/platform/CommissionableDataProvider.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ void SetCommissionableDataProvider(CommissionableDataProvider * provider)
4343
gCommissionableDataProvider = provider;
4444
}
4545

46-
} // namespace Credentials
46+
} // namespace DeviceLayer
4747
} // namespace chip

0 commit comments

Comments
 (0)