File tree Expand file tree Collapse file tree 1 file changed +31
-1
lines changed
content/hardware/03.nano/boards/nano-matter/tutorials/07.open-thread-border-router Expand file tree Collapse file tree 1 file changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -317,6 +317,9 @@ scripts/examples/gn_build_example.sh examples/chip-tool out/debug
317317```
318318
319319![ CHIP Tool environment set] ( assets/out-debug.png )
320+
321+ Wait for the packages installation process to finish.
322+
320323- To check if the CHIP Tool runs correctly, execute the following command:
321324
322325``` bash
@@ -366,7 +369,9 @@ For example:
366369
367370Connect through USB to the Nano ESP32 and run the following command from the Arduino IDE Serial Monitor:
368371
369- ` dataset active -x `
372+ ``` bash
373+ dataset active -x
374+ ```
370375
371376*** This command will display the active Thread network dataset as a hexadecimal string.***
372377
@@ -378,6 +383,31 @@ For example:
3783830e080000000000010000000300000f35060004001fffe00208dead00beef00cafe0708fd000db800a00000051000112233445566778899aabbccddeeff030e4f70656e5468726561642d455350010212340410104810e2315100afd6bc9215a6bfac530c0402a0f7f8
379384```
380385
386+ If an ** error** appears, for example:
387+
388+ ``` bash
389+ Error 23: NotFound
390+ ```
391+
392+ This means that there is no active Thread Network dataset configured. The following steps will help fix the error:
393+
394+ - Check if the OpenThread is enabled, sending this command through the Serial Monitor:
395+
396+ ``` bash
397+ state
398+ ```
399+ - If the response is ** disabled** , it means OpenThread has not started. To start it, use:
400+
401+ ``` bash
402+ ifconfig up
403+ ```
404+ ``` bash
405+ thread start
406+ ```
407+ - Then, try ` dataset active -x ` command again.
408+
409+ Now you should see the dataset string.
410+
381411### Matter Commissioning
382412
383413Commissioning refers to setting up and integrating a new device into the Matter network.
You can’t perform that action at this time.
0 commit comments