about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergio Gasquez <sergio.gasquez@gmail.com>2023-06-12 17:12:14 +0200
committerSergio Gasquez <sergio.gasquez@gmail.com>2023-06-12 17:12:14 +0200
commitc0aed703be1c8c6db6dbbf8edecba0108506a43c (patch)
tree4acf0e030497d78cda41b8bf17b01f1daf2f0c1c
parentcb882fa998571e8a7ec1c06bb5d9dd9bc3423629 (diff)
downloadrust-c0aed703be1c8c6db6dbbf8edecba0108506a43c.tar.gz
rust-c0aed703be1c8c6db6dbbf8edecba0108506a43c.zip
docs: 📝 Add missing targets
-rw-r--r--src/doc/rustc/src/platform-support/esp-idf.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/doc/rustc/src/platform-support/esp-idf.md b/src/doc/rustc/src/platform-support/esp-idf.md
index 4bbe35709b0..8f630fa152c 100644
--- a/src/doc/rustc/src/platform-support/esp-idf.md
+++ b/src/doc/rustc/src/platform-support/esp-idf.md
@@ -13,10 +13,12 @@ Targets for the [ESP-IDF](https://github.com/espressif/esp-idf) development fram
 
 The target names follow this format: `$ARCH-esp-espidf`, where `$ARCH` specifies the target processor architecture. The following targets are currently defined:
 
-|          Target name           | Target CPU(s)         | Minimum ESP-IDF version |
-|--------------------------------|-----------------------|-------------------------|
-| `riscv32imc-esp-espidf`        |  [ESP32-C3](https://www.espressif.com/en/products/socs/esp32-c3)             | `v4.3`                |
-| `riscv32imac-esp-espidf`       |  [ESP32-C6](https://www.espressif.com/en/products/socs/esp32-c6)             | `v5.1`                |
+| Target name              | Target CPU(s)                                                   | Minimum ESP-IDF version |
+| ------------------------ | --------------------------------------------------------------- | ----------------------- |
+| `riscv32imc-esp-espidf`  | [ESP32-C2](https://www.espressif.com/en/products/socs/esp32-c2) | `v5.0`                  |
+| `riscv32imc-esp-espidf`  | [ESP32-C3](https://www.espressif.com/en/products/socs/esp32-c3) | `v4.3`                  |
+| `riscv32imac-esp-espidf` | [ESP32-C6](https://www.espressif.com/en/products/socs/esp32-c6) | `v5.1`                  |
+| `riscv32imac-esp-espidf` | [ESP32-H2](https://www.espressif.com/en/products/socs/esp32-h2) | `v5.1`                  |
 
 It is recommended to use the latest ESP-IDF stable release if possible.