diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-06-26 11:58:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-26 11:58:44 +0200 |
| commit | ac84b664f995c469d491914d32fd7513edacfaec (patch) | |
| tree | 422726d896331657c7501496b5e58d45fc634846 | |
| parent | f6d58eaad3d2b426862a65c5dec9391544d66948 (diff) | |
| parent | c0aed703be1c8c6db6dbbf8edecba0108506a43c (diff) | |
| download | rust-ac84b664f995c469d491914d32fd7513edacfaec.tar.gz rust-ac84b664f995c469d491914d32fd7513edacfaec.zip | |
Rollup merge of #112559 - SergioGasquez:master, r=JohnTitor
Add esp-idf missing targets Adds some esp-idf missing targets to the table
| -rw-r--r-- | src/doc/rustc/src/platform-support/esp-idf.md | 10 |
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. |
