Add esp32c6 in supported target for ota examples

This commit is contained in:
Harshit Malpani 2023-04-27 12:21:10 +05:30
parent d9de899ed7
commit a3ecb8fe93
No known key found for this signature in database
GPG Key ID: FF1193D150EF75C3
6 changed files with 24 additions and 19 deletions

View File

@ -104,19 +104,23 @@ examples/system/light_sleep:
examples/system/ota/advanced_https_ota: examples/system/ota/advanced_https_ota:
disable: disable:
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2" - if: IDF_TARGET == "esp32h2"
temporary: true temporary: true
reason: target esp32c6 is not supported yet reason: target esp32h2 is not supported yet
disable_test: disable_test:
- if: IDF_TARGET == "esp32c2" - if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6"
temporary: true temporary: true
reason: lack of runners reason: lack of runners
examples/system/ota/native_ota_example: examples/system/ota/native_ota_example:
disable: disable:
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2" - if: IDF_TARGET == "esp32h2"
temporary: true 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: examples/system/ota/otatool:
disable: disable:
@ -126,21 +130,21 @@ examples/system/ota/otatool:
examples/system/ota/pre_encrypted_ota: examples/system/ota/pre_encrypted_ota:
disable: disable:
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2" - if: IDF_TARGET == "esp32h2"
temporary: true temporary: true
reason: target esp32c6 is not supported yet reason: target esp32h2 is not supported yet
disable_test: disable_test:
- if: IDF_TARGET == "esp32c2" - if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6"
temporary: true temporary: true
reason: lack of runners reason: lack of runners
examples/system/ota/simple_ota_example: examples/system/ota/simple_ota_example:
disable: disable:
- if: IDF_TARGET == "esp32c6" or IDF_TARGET == "esp32h2" - if: IDF_TARGET == "esp32h2"
temporary: true temporary: true
reason: target esp32c6 is not supported yet reason: target esp32h2 is not supported yet
disable_test: disable_test:
- if: IDF_TARGET == "esp32c2" - if: IDF_TARGET == "esp32c2" or IDF_TARGET == "esp32c6"
temporary: true temporary: true
reason: lack of runners 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 # 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_COMMON_NAME_CHECK=y
CONFIG_EXAMPLE_SKIP_VERSION_CHECK=y CONFIG_EXAMPLE_SKIP_VERSION_CHECK=y
CONFIG_EXAMPLE_OTA_RECV_TIMEOUT=3000 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 # 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 # 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 # Simple OTA example