Skip to content

Commit 25b26ee

Browse files
committed
fix the CI failures
1 parent 68c15fc commit 25b26ee

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

examples/thread-br-app/esp32/README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ guides to get started.
1111

1212
---
1313

14-
- [OpenThread Border Router DevKit Board](#openthread-border-router-board)
14+
- [OpenThread Border Router DevKit Board](#openthread-border-router-devkit-board)
1515
- [OpenThread RCP](#openthread-rcp)
1616
- [OpenThread CLI](#openthread-cli)
1717
- [Setup Thread Network](#setup-thread-network)
1818
- [Commissioning Thread End Devices](#commissioning-thread-end-devices)
1919

2020
---
2121

22-
### Thread Border Router Board
22+
### OpenThread Border Router Devkit Board
2323

2424
The ESP Thread border router board provides an integrated module of an ESP32-S3 and an ESP32-H2.
2525

@@ -63,7 +63,7 @@ Detached
6363
Done
6464
```
6565

66-
### Setup/Join Thread Network
66+
### Setup Thread Network
6767

6868
You can send SetActiveDatasetRequest command to the Thread BR after commissioning it as a
6969
Matter-Over-Wi-Fi device to setup the Thread network or join an existing Thread network.
@@ -72,11 +72,12 @@ Matter-Over-Wi-Fi device to setup the Thread network or join an existing Thread
7272
./chip-tool pairing ble-wifi 1 <ssid> <password> 20202021 3840
7373
./chip-tool generalcommissioning arm-fail-safe 180 1 1 0
7474
./chip-tool threadborderroutermanagement set-active-dataset-request hex:<dataset-tlvs> 1 1 1
75+
./chip-tool generalcommissioning commissioning-complete 1 0
7576
```
7677

7778
The Thread BR with enable the Thread network interface and start Thread network after it receives
7879
SetActiveDatasetRequest command. And after the Thread BR sets up or join a Thread network, it will
79-
send the success response and disarm the fail safe timer.
80+
send the success response.
8081

8182
### Commissioning Thread End Devices
8283

examples/thread-br-app/esp32/create_ota_image.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
#!/usr/bin/env python3
22

33
import os
4-
import sys
54
import argparse
65
import pathlib
7-
import shutil
86
import struct
97

108
FILETAG_RCP_VERSION = 0
@@ -38,7 +36,7 @@ def append_flash_args(fout, flash_args_path):
3836
with open(flash_args_path, 'r') as f:
3937
# skip first line
4038
next(f)
41-
partition_info_list = [l.split() for l in f]
39+
partition_info_list = [line.split() for line in f]
4240
for offset, partition_file in partition_info_list:
4341
offset = int(offset, 0)
4442
if partition_file.find('bootloader') >= 0:

0 commit comments

Comments
 (0)