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
- Update the `project-directory` field with the binary directory you downloaded in the previous step.
84
+
- Open the Command Prompt and paste the formatted command.
85
+
- Connect the Nano Matter to your PC using a USB-C® cable.
86
+
- Run the command and verify the download process was successful.
87
+
88
+

89
+
90
+
***Make sure to have the [Silicon Labs core](https://docs.arduino.cc/tutorials/nano-matter/user-manual/#board-core-and-libraries) installed on your Arduino IDE so you can use the __openocd__ tool for flashing.***
91
+
92
+
From here, jump directly to the [Matter Controller section](http://localhost:8000/tutorials/nano-matter/open-thread-border-router/#the-matter-controller-nano-esp32).
93
+
94
+
#### Build the Binary From Scratch (Optional)
95
+
96
+
If you want to build the Nano Matter program by yourself, follow the steps below:
70
97
71
98
- Download Simplicity Studio. Silicon Labs provides this IDE, which is designed to simplify the development process for Silicon Labs hardware platforms. Download latest version [here](https://www.silabs.com/developers/simplicity-studio).
72
99
@@ -159,11 +186,20 @@ cd esp-idf
159
186
. ./export.sh
160
187
```
161
188
189
+
- Navigate to the `ot_rcp` example included in the `esp-idf` directory, and build it using the `esp32h2` target:
190
+
191
+
```bash
192
+
cd examples/openthread/ot_rcp
193
+
idf.py set-target esp32h2
194
+
idf.py build
195
+
```
196
+
162
197
- Clone the ESP Thread Border Router example repository:
cd esp-thread-br/examples/basic_thread_border_router/
167
203
```
168
204
- For the `sdkconfig` file to be generated, and we can later modify it with our Nano ESP32 custom settings, set the device target from the command line:
0 commit comments