Skip to content

Commit

Permalink
fix(matter): missing option idf.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SuGlider authored Sep 23, 2024
1 parent 68e85af commit 1907f58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions idf_component_examples/esp_matter_light/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ Use ESP-IDF 5.1.4 from https://github.com/espressif/esp-idf/tree/release/v5.1
This example has been tested with Arduino Core 3.0.4

The project will download all necessary components, including the Arduino Core.
Run `idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.<SOC>.idf" -p <PORT> flash monitor`
Run `idf.py -D SDKCONFIG_DEFAULTS="sdkconfig.defaults.<SOC>.idf" -p <PORT> flash monitor`

Example for ESP32-S3/Linux | macOS:
```
idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.esp32s3" -p /dev/ttyACM0 flash monitor
idf.py -D SDKCONFIG_DEFAULTS="sdkconfig.defaults.esp32s3" -p /dev/ttyACM0 flash monitor
```
Example for ESP32-C3/Windows:
```
Expand Down Expand Up @@ -95,7 +95,7 @@ In order to build the application that will use Thread Networking instead of Wi-

Example for ESP32-C6/Linux | macOS:
```
idf.py SDKCONFIG_DEFAULTS="sdkconfig.defaults.c6_thread" -p /dev/ttyACM0 flash monitor
idf.py -D SDKCONFIG_DEFAULTS="sdkconfig.defaults.c6_thread" -p /dev/ttyACM0 flash monitor
```
Example for ESP32-C6/Windows:
```
Expand Down

0 comments on commit 1907f58

Please sign in to comment.