Skip to content

Commit 361d3a9

Browse files
committed
feat(wifi_remote): Add support for IDF v5.5.1 release tag
1 parent 694b2d7 commit 361d3a9

25 files changed

+11408
-2
lines changed

.github/workflows/smoke_compat.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Check API compatibility of WiFi Remote
1515
strategy:
1616
matrix:
17-
idf_ver: ["latest", "release-v5.5", "release-v5.4", "release-v5.3", "v5.4", "v5.4.1", "v5.4.2", "v5.3.3", "v5.3.2", "v5.3.1", "v5.5", "v5.3"]
17+
idf_ver: ["latest", "release-v5.5", "release-v5.4", "release-v5.3", "v5.4", "v5.4.1", "v5.4.2", "v5.3.3", "v5.3.2", "v5.3.1", "v5.5", "v5.5.1", "v5.3"]
1818
runs-on: ubuntu-latest
1919
container: espressif/idf:${{ matrix.idf_ver }}
2020
steps:
@@ -34,7 +34,7 @@ jobs:
3434
name: Build IDF examples with WiFi Remote
3535
strategy:
3636
matrix:
37-
idf_ver: ["latest", "release-v5.5", "release-v5.4", "release-v5.3", "v5.4.1", "v5.3.3", "v5.3.1", "v5.3.2", "v5.4", "v5.4.2", "v5.5", "v5.3"]
37+
idf_ver: ["latest", "release-v5.5", "release-v5.4", "release-v5.3", "v5.4.1", "v5.3.3", "v5.3.1", "v5.3.2", "v5.4", "v5.4.2", "v5.5", "v5.5.1", "v5.3"]
3838
idf_target: ["esp32p4", "esp32h2", "esp32s3"]
3939
test: [ { app: idf_mqtt_example, path: "examples/protocols/mqtt/tcp" }, { app: wifi_enterprise, path: "examples/wifi/wifi_enterprise" }]
4040
runs-on: ubuntu-latest
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# This file is auto-generated
2+
choice SLAVE_IDF_TARGET
3+
prompt "choose slave target"
4+
default SLAVE_IDF_TARGET_ESP32C6 if IDF_TARGET_ESP32P4 # To support common use-cases
5+
default SLAVE_IDF_TARGET_ESP32
6+
7+
config SLAVE_IDF_TARGET_ESP32
8+
bool "esp32"
9+
config SLAVE_IDF_TARGET_ESP32S2
10+
bool "esp32s2"
11+
config SLAVE_IDF_TARGET_ESP32C3
12+
bool "esp32c3"
13+
config SLAVE_IDF_TARGET_ESP32S3
14+
bool "esp32s3"
15+
config SLAVE_IDF_TARGET_ESP32C2
16+
bool "esp32c2"
17+
config SLAVE_IDF_TARGET_ESP32C6
18+
bool "esp32c6"
19+
config SLAVE_IDF_TARGET_ESP32C5
20+
bool "esp32c5"
21+
config SLAVE_IDF_TARGET_ESP32C61
22+
bool "esp32c61"
23+
endchoice

0 commit comments

Comments
 (0)