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
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ section in the ESP-Matter Programming Guide.
30
30
31
31
- This SDK currently works with commit [d144bbbaae] (https://github.com/project-chip/connectedhomeip/tree/d144bbbaae) of connectedhomeip.
32
32
- For Matter projects development with this SDK, it is recommended to utilize ESP-IDF [v5.4.1](https://github.com/espressif/esp-idf/tree/v5.4.1).
33
+
- For ESP32C5, it is recommended to utilize ESP-IDF [98cd765953](https://github.com/espressif/esp-idf/commit/98cd765953dfe0e7bb1c5df8367e1b54bd966cce).
Copy file name to clipboardExpand all lines: docs/en/developing.rst
+38-16Lines changed: 38 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ This section talks about setting up ESP-IDF.
15
15
You should install drivers and support packages for your development
16
16
host. Linux and Mac OS-X are the supported development hosts in Matter, the recommended host versions:
17
17
18
-
- Ubuntu 20.04 or 22.04 LTS
18
+
- Ubuntu 20.04 or 22.04 or 24.04 LTS
19
19
- macOS 10.15 or later
20
20
21
21
Additionally, we also support developing on Windows Host using WSL.
@@ -52,20 +52,36 @@ The Prerequisites for ESP-IDF:
52
52
53
53
- Please get the `Prerequisites for ESP-IDF`_. For beginners, please check `step by step installation guide`_ for esp-idf.
54
54
55
+
.. only:: esp32c5
56
+
57
+
- For ``ESP32C5``, the IDF version should be `98cd765953 <https://github.com/espressif/esp-idf/commit/98cd765953dfe0e7bb1c5df8367e1b54bd966cce>`__ or newer.
58
+
55
59
.. note::
56
60
57
61
``git clone`` command accepts the optional argument ``--jobs N``, which can significantly speed up the
58
62
process by parallelizing submodule cloning. Consider using this option when cloning repositories.
- ESP32-C6 supports both the Wi-Fi and IEEE 802.15.4 radio, so you can run Wi-Fi or Thread matter example on it.
326
+
- {IDF_TARGET_NAME} supports both the Wi-Fi and IEEE 802.15.4 radio, so you can run Wi-Fi or Thread matter example on it.
305
327
306
328
- To enable Thread, you should change the menuconfig options to ``CONFIG_OPENTHREAD_ENABLED=y``, ``CONFIG_ENABLE_WIFI_STATION=n``, and ``CONFIG_USE_MINIMAL_MDNS=n``.
307
329
- To enable Wi-Fi. you should change the menuconfig options to ``CONFIG_OPENTHREAD_ENABLED=n``, ``CONFIG_ENABLE_WIFI_STATION=y``, and ``CONFIG_USE_MINIMAL_MDNS=y``.
@@ -359,7 +381,7 @@ Use ``chip-tool`` in interactive mode to commission the device:
359
381
chip-tool interactive start
360
382
361
383
362
-
.. only:: esp32 or esp32s3 or esp32c3 or esp32c2 or esp32c6 or esp32p4
384
+
.. only:: esp32 or esp32s3 or esp32c3 or esp32c2 or esp32c6 or esp32p4 or esp32c5
363
385
364
386
::
365
387
@@ -369,7 +391,7 @@ Use ``chip-tool`` in interactive mode to commission the device:
369
391
370
392
or
371
393
372
-
.. only:: esp32h2 or esp32c6
394
+
.. only:: esp32h2 or esp32c6 or esp32c5
373
395
374
396
::
375
397
@@ -386,7 +408,7 @@ Above method commissions the device using setup passcode and discriminator. Devi
386
408
387
409
To Commission the device using manual pairing code 34970112332
388
410
389
-
.. only:: esp32 or esp32s3 or esp32c3 or esp32c2 or esp32c6 or esp32p4
411
+
.. only:: esp32 or esp32s3 or esp32c3 or esp32c2 or esp32c6 or esp32p4 or esp32c5
390
412
391
413
::
392
414
@@ -396,7 +418,7 @@ To Commission the device using manual pairing code 34970112332
Copy file name to clipboardExpand all lines: docs/en/introduction.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ Espressif platform solutions are as shown below:
26
26
:figclass:align-center
27
27
28
28
- The Wi-Fi-enabled SoCs and modules, such as ESP32, ESP32-C and ESP32-S series can be used to build **Matter Wi-Fi devices**.
29
-
- ESP32-H SoCs and modules with 802.15.4 can be used to build **Matter Thread devices**.
29
+
- SoCs and modules(ESP32-H series, ESP32-C5, and ESP32-C6) with 802.15.4 can be used to build **Matter Thread devices**.
30
30
- By efficiently combining ESP32-H and our Wi-Fi SoCs, a **Thread Border Router** can be built to connect the Thread network with the Wi-Fi network. We provide hardware devkits, reference designs and production-ready SDK, which supports the latest Thread 1.3 feature for Matter.
31
31
- We also provide Matter-Zigbee and Matter-BLE Mesh bridge solutions that enable non-Matter devices based on Zigbee, Bluetooth LE Mesh and other protocols to connect to the Matter ecosystem. A **Matter-Zigbee Bridge** uses ESP32-H and another Wi-Fi SoC, while a **Matter-BLE Mesh Bridge** can be done on a single SoC with both Wi-Fi and Bluetooth LE interfaces.
Copy file name to clipboardExpand all lines: docs/en/security.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ DAC private needs to be protected from remote as well as physical attacks in the
59
59
60
60
Recommended ways for DAC private key protection:
61
61
62
-
.. only:: esp32h2
62
+
.. only:: esp32h2 or esp32c5
63
63
64
64
- {IDF_TARGET_NAME} supports ECDSA hardware peripheral with the ECDSA key programmed in the eFuse. This key is software read protected (in default mode). This peripheral can help to protect the identity of the DAC private key on the device.
0 commit comments