Merge branch 'add_c6_in_supported_targets_in_prov_example' into 'master'

Add ESP32-C6 in supported targets

See merge request espressif/esp-idf!23492
This commit is contained in:
Mahavir Jain 2023-05-02 11:56:50 +08:00
commit 789173587f
8 changed files with 26 additions and 24 deletions

View File

@ -2,9 +2,6 @@
examples/provisioning/wifi_prov_mgr:
disable:
- if: IDF_TARGET == "esp32c6"
temporary: true
reason: target esp32c6 is not supported yet
- if: SOC_WIFI_SUPPORTED != 1
disable_test:
- if: IDF_TARGET != "esp32"

View File

@ -1,5 +1,5 @@
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- |
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |
# Wi-Fi Provisioning Manager Example

View File

@ -92,19 +92,23 @@ examples/system/light_sleep:
examples/system/ota/advanced_https_ota:
disable:
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2"
- if: IDF_TARGET == "esp32h2"
temporary: true
reason: target esp32c6 is not supported yet
reason: target esp32h2 is not supported yet
disable_test:
- if: IDF_TARGET == "esp32c2"
- if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6"
temporary: true
reason: lack of runners
examples/system/ota/native_ota_example:
disable:
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2"
- if: IDF_TARGET == "esp32h2"
temporary: true
reason: target esp32c6 is not supported yet
reason: target esp32h2 is not supported yet
disable_test:
- if: IDF_TARGET == "esp32c6"
temporary: true
reason: lack of runners
examples/system/ota/otatool:
disable:
@ -114,21 +118,21 @@ examples/system/ota/otatool:
examples/system/ota/pre_encrypted_ota:
disable:
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2"
- if: IDF_TARGET == "esp32h2"
temporary: true
reason: target esp32c6 is not supported yet
reason: target esp32h2 is not supported yet
disable_test:
- if: IDF_TARGET == "esp32c2"
- if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6"
temporary: true
reason: lack of runners
examples/system/ota/simple_ota_example:
disable:
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2"
- if: IDF_TARGET == "esp32h2"
temporary: true
reason: target esp32c6 is not supported yet
reason: target esp32h2 is not supported yet
disable_test:
- if: IDF_TARGET == "esp32c2"
- if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6"
temporary: true
reason: lack of runners

View File

@ -1,5 +1,5 @@
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- |
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |
# Advanced HTTPS OTA example

View File

@ -19,3 +19,4 @@ CONFIG_EXAMPLE_FIRMWARE_UPGRADE_URL="FROM_STDIN"
CONFIG_EXAMPLE_SKIP_COMMON_NAME_CHECK=y
CONFIG_EXAMPLE_SKIP_VERSION_CHECK=y
CONFIG_EXAMPLE_OTA_RECV_TIMEOUT=3000
CONFIG_COMPILER_OPTIMIZATION_SIZE=y

View File

@ -1,5 +1,5 @@
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- |
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |
# Native OTA example

View File

@ -1,5 +1,5 @@
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- |
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |
# Encrypted Binary OTA

View File

@ -1,5 +1,5 @@
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- |
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- |
# Simple OTA example