Skip to content

Commit 2b15254

Browse files
docs(socs): Add missing SoCs and features to documentation (#12112)
* docs(socs): Add missing SoCs and features to documentation * docs(table): Improve table information * docs(matter): Fix matter support * ci(pre-commit): Apply automatic fixes * fix(pre-commit): Apply code suggestions --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
1 parent b2ae61e commit 2b15254

File tree

10 files changed

+169
-86
lines changed

10 files changed

+169
-86
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Arduino core for the ESP32, ESP32-C3, ESP32-C5, ESP32-C6, ESP32-H2, ESP32-P4, ESP32-S2 and ESP32-S3.
1+
# Arduino core for the ESP32 family of SoCs
22

33
[![Build Status](https://img.shields.io/github/actions/workflow/status/espressif/arduino-esp32/push.yml?branch=master&event=push&label=Compilation%20Tests)](https://github.com/espressif/arduino-esp32/actions/workflows/push.yml?query=branch%3Amaster+event%3Apush)
44
[![Verbose Build Status](https://img.shields.io/github/actions/workflow/status/espressif/arduino-esp32/push.yml?branch=master&event=schedule&label=Compilation%20Tests%20(Verbose))](https://github.com/espressif/arduino-esp32/actions/workflows/push.yml?query=branch%3Amaster+event%3Aschedule)

docs/_static/chatbot_widget.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#kapa-widget-container {
2-
z-index: 10000 !important;
3-
position: absolute !important;
4-
}
2+
z-index: 10000 !important;
3+
position: absolute !important;
4+
}
55

6-
.mantine-Modal-root {
7-
z-index: 10000;
8-
position: absolute;
9-
}
6+
.mantine-Modal-root {
7+
z-index: 10000;
8+
position: absolute;
9+
}

docs/_static/custom.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/* Custom styles for Arduino ESP32 documentation */
2+
3+
/* Wide table support - make content container wider */
4+
/*
5+
.document {
6+
max-width: 1100px !important;
7+
}
8+
9+
.wy-nav-content {
10+
max-width: 1100px !important;
11+
}
12+
*/
13+
14+
/* Make tables scrollable when they exceed page width */
15+
.table-wrap {
16+
overflow-x: auto;
17+
max-width: 100%;
18+
}
19+
20+
.table-wrap table {
21+
font-size: 0.9em;
22+
width: auto !important;
23+
display: table;
24+
}

docs/conf_common.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
rst_prolog = """
77
.. |version| replace:: 3.3.4
88
.. |idf_version| replace:: 5.5
9+
.. |no| replace:: ❌
10+
.. |yes| replace:: ✅
11+
.. |n/a| replace:: ➖
912
"""
1013

1114
languages = ["en"]
@@ -29,7 +32,10 @@
2932
html_static_path = ["../_static"]
3033

3134
html_js_files = ["../_static/chatbot_widget_en.js"]
32-
html_css_files = ["../_static/chatbot_widget.css"]
35+
html_css_files = [
36+
"../_static/chatbot_widget.css",
37+
"../_static/custom.css",
38+
]
3339

3440
# Conditional content
3541

docs/en/boards/boards.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,16 @@ The ESP32 is divided by family:
1818

1919
* ESP32
2020
* Wi-Fi, BT and BLE 4
21+
* ESP32-C2 [#rebuild-required]_
22+
* Wi-Fi and BLE 5
2123
* ESP32-C3
2224
* Wi-Fi and BLE 5
25+
* ESP32-C5
26+
* Dual-band Wi-Fi 6, BLE 5 and IEEE 802.15.4
2327
* ESP32-C6
24-
* Wi-Fi, BLE 5 and IEEE 802.15.4
28+
* Wi-Fi 6, BLE 5 and IEEE 802.15.4
29+
* ESP32-C61 [#rebuild-required]_
30+
* Wi-Fi 6, BLE 5
2531
* ESP32-H2
2632
* BLE 5 and IEEE 802.15.4
2733
* ESP32-P4
@@ -31,6 +37,8 @@ The ESP32 is divided by family:
3137
* ESP32-S3
3238
* Wi-Fi and BLE 5
3339

40+
.. [#rebuild-required] This SoC is only supported using Arduino as an ESP-IDF component or by rebuilding the static libraries.
41+
3442
For each family, we have SoC variants with some differentiation. The differences are more about the embedded flash and its size and the number of the cores (dual or single).
3543

3644
The modules use the SoC internally, including the external flash, PSRAM (in some models) and other essential electronic components. Essentially, all

docs/en/common/datasheet.inc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ Datasheet
44
* `ESP32`_ (Datasheet)
55
* `ESP32-C2`_ (Datasheet)
66
* `ESP32-C3`_ (Datasheet)
7+
* `ESP32-C5`_ (Datasheet)
78
* `ESP32-C6`_ (Datasheet)
9+
* `ESP32-C61`_ (Datasheet)
810
* `ESP32-H2`_ (Datasheet)
911
* `ESP32-P4`_ (Datasheet)
1012
* `ESP32-S2`_ (Datasheet)
@@ -14,7 +16,9 @@ Datasheet
1416
.. _ESP32: https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf
1517
.. _ESP32-C2: https://www.espressif.com/sites/default/files/documentation/esp8684_datasheet_en.pdf
1618
.. _ESP32-C3: https://www.espressif.com/sites/default/files/documentation/esp32-c3_datasheet_en.pdf
19+
.. _ESP32-C5: https://www.espressif.com/sites/default/files/documentation/esp32-c5_datasheet_en.pdf
1720
.. _ESP32-C6: https://www.espressif.com/sites/default/files/documentation/esp32-c6_datasheet_en.pdf
21+
.. _ESP32-C61: https://www.espressif.com/sites/default/files/documentation/esp32-c61_datasheet_en.pdf
1822
.. _ESP32-H2: https://www.espressif.com/sites/default/files/documentation/esp32-h2_datasheet_en.pdf
1923
.. _ESP32-P4: https://www.espressif.com/sites/default/files/documentation/esp32-p4_datasheet_en.pdf
2024
.. _ESP32-S2: https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf

docs/en/getting_started.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ SoC Stable Development Datasheet
3939
========== ====== =========== =================================
4040
ESP32 Yes Yes `ESP32`_
4141
ESP32-C3 Yes Yes `ESP32-C3`_
42+
ESP32-C5 Yes Yes `ESP32-C5`_
4243
ESP32-C6 Yes Yes `ESP32-C6`_
4344
ESP32-H2 Yes Yes `ESP32-H2`_
4445
ESP32-P4 Yes Yes `ESP32-P4`_
@@ -47,7 +48,7 @@ ESP32-S3 Yes Yes `ESP32-S3`_
4748
========== ====== =========== =================================
4849

4950
.. note::
50-
ESP32-C2 is also supported by Arduino-ESP32 but requires using Arduino as an ESP-IDF component or rebuilding the static libraries.
51+
ESP32-C2 and ESP32-C61 are also supported by Arduino-ESP32 but require using Arduino as an ESP-IDF component or rebuilding the static libraries.
5152
For more information, see the `Arduino as an ESP-IDF component documentation <esp-idf_component.html>`_ or the
5253
`Lib Builder documentation <lib_builder.html>`_, respectively.
5354

docs/en/libraries.rst

Lines changed: 108 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -2,77 +2,114 @@
22
Libraries
33
#########
44

5-
Here is where the Libraries API's descriptions are located:
6-
7-
Supported Peripherals
8-
---------------------
9-
10-
Currently, the Arduino ESP32 supports the following peripherals with Arduino APIs.
11-
12-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
13-
| Peripheral | ESP32 | C3 | C6 | H2 | P4 | S2 | S3 | Notes |
14-
+===============+=======+=======+=======+=======+=======+=======+=======+=======+
15-
| ADC | Yes | Yes | Yes | Yes | Yes | Yes | Yes | (1) |
16-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
17-
| BT Classic | Yes | N/A | N/A | N/A | N/A | N/A | N/A | |
18-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
19-
| BLE | Yes | Yes | Yes | Yes | No | N/A | Yes | |
20-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
21-
| DAC | Yes | N/A | N/A | N/A | Yes | Yes | N/A | |
22-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
23-
| Ethernet | Yes | N/A | N/A | N/A | Yes | N/A | N/A | (2) |
24-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
25-
| GPIO | Yes | Yes | Yes | Yes | Yes | Yes | Yes | |
26-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
27-
| Hall Sensor | N/A | N/A | N/A | N/A | N/A | N/A | N/A | |
28-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
29-
| I2C | Yes | Yes | Yes | Yes | Yes | Yes | Yes | |
30-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
31-
| I2S | Yes | Yes | Yes | Yes | Yes | Yes | Yes | |
32-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
33-
| LEDC | Yes | Yes | Yes | Yes | Yes | Yes | Yes | |
34-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
35-
| MIPI | N/A | N/A | N/A | N/A | No | N/A | N/A | |
36-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
37-
| Motor PWM | No | N/A | N/A | N/A | N/A | N/A | N/A | |
38-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
39-
| MSPI | N/A | N/A | N/A | N/A | No | N/A | N/A | |
40-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
41-
| Pulse Counter | No | No | No | No | No | No | No | |
42-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
43-
| RMT | Yes | Yes | Yes | Yes | Yes | Yes | Yes | |
44-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
45-
| SDIO | No | No | No | No | No | No | No | |
46-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
47-
| SDMMC | Yes | N/A | N/A | N/A | N/A | N/A | Yes | |
48-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
49-
| Timer | Yes | Yes | Yes | Yes | Yes | Yes | Yes | |
50-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
51-
| Temp. Sensor | N/A | Yes | Yes | Yes | Yes | Yes | Yes | |
52-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
53-
| Touch | Yes | N/A | N/A | N/A | Yes | Yes | Yes | |
54-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
55-
| TWAI | No | No | No | No | No | No | No | |
56-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
57-
| UART | Yes | Yes | Yes | Yes | Yes | Yes | Yes | |
58-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
59-
| USB | N/A | Yes | Yes | Yes | Yes | Yes | Yes | (3) |
60-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
61-
| Wi-Fi | Yes | Yes | Yes | N/A | Yes | Yes | Yes | (4) |
62-
+---------------+-------+-------+-------+-------+-------+-------+-------+-------+
63-
64-
Notes
65-
^^^^^
66-
67-
(1) ESP32-P4 calibration schemes not supported yet in IDF and ADC Continuous also lacks IDF support.
68-
69-
(2) SPI Ethernet is supported by all ESP32 families and RMII only for ESP32 and ESP32-P4.
70-
71-
(3) ESP32-C3, C6, H2 only support USB CDC/JTAG
72-
73-
(4) ESP32-P4 only supports Wi-Fi through another SoC by using ``esp_hosted``.
74-
75-
.. note:: Some peripherals are not available for all ESP32 families. To see more details about it, see the corresponding SoC at `Product Selector <https://products.espressif.com>`_ page.
5+
Arduino libraries help you use the features of the ESP32 family of chips with the familiar Arduino API.
6+
7+
Supported Features and Peripherals
8+
----------------------------------
9+
10+
Currently, the Arduino ESP32 supports almost everything available on the ESP32 family with an Arduino-like API.
11+
12+
Not all features are available on all SoCs. Please check the `Product Selector <https://products.espressif.com>`_ page
13+
for more details.
14+
15+
Here is a matrix of the library support status for the main features and peripherals per SoC:
16+
17+
- |yes| Supported through the Arduino Core
18+
- |no| Not supported through the Arduino Core. It can still be used through the ESP-IDF API, but might require rebuilding the static libraries.
19+
- |n/a| Not available on the SoC
20+
21+
.. rst-class:: table-wrap
22+
23+
.. Using substitutions rather than emojis directly because in macOS vscode the emojis don't take a fixed space in the text
24+
and the table looks weird and hard to edit. This is a workaround to make the table easier to edit. Just write
25+
|yes|, |no|, |n/a| instead of emojis.
26+
27+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
28+
| Feature | ESP32 | C2 | C3 | C5 | C6 | C61 | H2 | P4 | S2 | S3 |
29+
+======================+=======+=======+=======+=======+=======+=======+=======+=======+=======+=======+
30+
| ADC [1]_ | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| |
31+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
32+
| BT Classic | |yes| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| |
33+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
34+
| BLE [2]_ | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |n/a| | |yes| |
35+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
36+
| DAC | |yes| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |yes| | |n/a| |
37+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
38+
| ESP-NOW [3]_ | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |n/a| | |n/a| | |yes| | |yes| |
39+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
40+
| Ethernet [4]_ | |yes| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |yes| | |n/a| | |n/a| |
41+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
42+
| GPIO | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| |
43+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
44+
| Hall Sensor | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| |
45+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
46+
| I2C | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| |
47+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
48+
| I2S | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| |
49+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
50+
| I3C | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |no| | |n/a| | |n/a| |
51+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
52+
| LEDC | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| |
53+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
54+
| Matter (Thread) [6]_ | |n/a| | |n/a| | |n/a| | |yes| | |yes| | |n/a| | |yes| | |n/a| | |n/a| | |n/a| |
55+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
56+
| Matter (Wi-Fi) | |yes| | |no| | |yes| | |yes| | |yes| | |no| | |n/a| | |n/a| | |yes| | |yes| |
57+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
58+
| MIPI CSI | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |no| | |n/a| | |n/a| |
59+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
60+
| MIPI DSI | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |no| | |n/a| | |n/a| |
61+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
62+
| Motor PWM | |no| | |n/a| | |n/a| | |no| | |no| | |n/a| | |no| | |no| | |n/a| | |no| |
63+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
64+
| MSPI | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |no| | |n/a| | |n/a| |
65+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
66+
| Pulse Counter | |no| | |no| | |no| | |no| | |no| | |no| | |no| | |no| | |no| | |no| |
67+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
68+
| RMT | |yes| | |yes| | |yes| | |yes| | |yes| | |n/a| | |yes| | |yes| | |yes| | |yes| |
69+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
70+
| SDIO | |no| | |n/a| | |n/a| | |no| | |no| | |no| | |n/a| | |no| | |n/a| | |no| |
71+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
72+
| SDMMC | |yes| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |yes| |
73+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
74+
| PSRAM | |yes| | |n/a| | |n/a| | |yes| | |n/a| | |yes| | |n/a| | |yes| | |yes| | |yes| |
75+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
76+
| Temp. Sensor | |n/a| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| |
77+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
78+
| Thread | |n/a| | |n/a| | |n/a| | |yes| | |yes| | |n/a| | |yes| | |n/a| | |n/a| | |n/a| |
79+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
80+
| Timer | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| |
81+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
82+
| Touch | |yes| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |yes| | |yes| | |yes| |
83+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
84+
| TWAI/CAN-FD | |no| | |n/a| | |no| | |no| | |no| | |n/a| | |no| | |no| | |no| | |no| |
85+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
86+
| UART | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| |
87+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
88+
| USB OTG | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |n/a| | |yes| | |yes| | |yes| |
89+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
90+
| USB Serial | |n/a| | |n/a| | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |n/a| | |yes| |
91+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
92+
| Wi-Fi [2]_ | |yes| | |yes| | |yes| | |yes| | |yes| | |yes| | |n/a| | |yes| | |yes| | |yes| |
93+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
94+
| Zigbee [5]_ | |n/a| | |n/a| | |n/a| | |yes| | |yes| | |n/a| | |yes| | |n/a| | |n/a| | |n/a| |
95+
+----------------------+-------+-------+-------+-------+-------+-------+-------+-------+-------+-------+
96+
97+
.. [1] ESP32-P4 calibration schemes not supported yet in IDF and ADC Continuous also lacks IDF support.
98+
99+
.. [2] ESP32-P4 only supports Wi-Fi and BLE through another SoC by using ``ESP-Hosted``.
100+
101+
.. [3] ESP-NOW is not supported through ``ESP-Hosted``.
102+
103+
.. [4] SPI Ethernet is supported by all ESP32 families and RMII only for ESP32 and ESP32-P4.
104+
105+
.. [5] Non-native Zigbee SoCs can also run Zigbee, but must use another SoC (with Zigbee radio) as a RCP connected by UART/SPI.
106+
Check the `Gateway example <https://github.com/espressif/arduino-esp32/tree/master/libraries/Zigbee/examples/Zigbee_Gateway>`_ for more details.
107+
108+
.. [6] Matter over Thread is supported by our library but is not included in the pre-compiled libraries for ESP32-C6 and ESP32-C5.
109+
In order to use Matter over Thread, you need to use Arduino as an ESP-IDF component or rebuild the static libraries.
110+
Check the `Arduino_ESP_Matter_over_OpenThread example <https://github.com/espressif/arduino-esp32/tree/master/idf_component_examples/Arduino_ESP_Matter_over_OpenThread>`_ for more details.
111+
112+
.. note:: The ESP32-C2 and ESP32-C61 are only supported using Arduino as an ESP-IDF component or by rebuilding the static libraries.
76113

77114
.. include:: common/datasheet.inc
78115

docs/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
sphinx==4.5.0
2-
esp-docs>=1.4.0
1+
sphinx==7.1.2
2+
esp-docs==2.1.1
33
sphinx-copybutton==0.5.0
4-
sphinx-tabs==3.2.0
5-
numpydoc==1.5.0
4+
sphinx-tabs==3.4.7
5+
numpydoc==1.10.0
66
standard-imghdr==3.13.0
77
Sphinx-Substitution-Extensions==2022.2.16

package/package_esp32_index.template.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
{
2929
"name": "ESP32-C3 Dev Board"
3030
},
31+
{
32+
"name": "ESP32-C5 Dev Board"
33+
},
3134
{
3235
"name": "ESP32-C6 Dev Board"
3336
},

0 commit comments

Comments
 (0)