Skip to content

Commit 1bde604

Browse files
authored
pioarduino IDF 5.3.4 release
1 parent d4e81db commit 1bde604

File tree

5 files changed

+35
-10
lines changed

5 files changed

+35
-10
lines changed

.github/workflows/release_zips.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@ on:
88
jobs:
99
release_zips:
1010
name: Create release zip file
11-
runs-on: ubuntu-24.04
11+
runs-on: ubuntu-latest
1212
steps:
13-
- name: Create a recursive clone source zip
14-
uses: espressif/release-zips-action@v1
15-
with:
16-
github_token: ${{ secrets.GITHUB_TOKEN }}
17-
release_project_name: ESP-IDF
18-
git_extra_args: --shallow-since="1 year ago"
13+
- name: Create a recursive clone source and stripped zip
14+
uses: Jason2866/github-actions/release_zips@release_idf
15+
env:
16+
RELEASE_PROJECT_NAME: ESP-IDF
17+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

components/wpa_supplicant/esp_supplicant/src/esp_hostap.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,9 @@ void *hostap_init(void)
192192
os_memcpy(hapd->conf->ssid.wpa_passphrase, esp_wifi_ap_get_prof_password_internal(), strlen((char *)esp_wifi_ap_get_prof_password_internal()));
193193
hapd->conf->ssid.wpa_passphrase[WIFI_PASSWORD_LEN_MAX - 1] = '\0';
194194
hapd->conf->max_num_sta = esp_wifi_ap_get_max_sta_conn();
195+
#ifdef CONFIG_SAE
195196
auth_conf->transition_disable = esp_wifi_ap_get_transition_disable_internal();
197+
#endif /* CONFIG_SAE */
196198
if (authmode != WIFI_AUTH_WPA3_PSK &&
197199
authmode != WIFI_AUTH_WPA2_WPA3_PSK && auth_conf->transition_disable) {
198200
auth_conf->transition_disable = 0;

package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "framework-espidf",
3+
"version": "3.50304",
4+
"description": "Espressif IoT Development Framework",
5+
"keywords": [
6+
"framework",
7+
"esp32",
8+
"esp32s2",
9+
"esp32s3",
10+
"esp32c2",
11+
"esp32c3",
12+
"esp32c6",
13+
"esp32h2",
14+
"esp32p4",
15+
"espressif"
16+
],
17+
"homepage": "https://docs.espressif.com/projects/esp-idf/en/latest/esp32/",
18+
"license": "Apache-2.0",
19+
"repository": {
20+
"type": "git",
21+
"url": "https://github.com/espressif/esp-idf"
22+
}
23+
}

tools/cmake/build.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ function(__build_set_default_build_specifications)
100100
list(APPEND compile_options "-ffunction-sections"
101101
"-fdata-sections"
102102
# warning-related flags
103-
"-Wall"
104-
"-Werror=all"
103+
# "-Wall"
104+
# "-Werror=all"
105105
"-Wno-error=unused-function"
106106
"-Wno-error=unused-variable"
107107
"-Wno-error=unused-but-set-variable"
108108
"-Wno-error=deprecated-declarations"
109-
"-Wextra"
109+
# "-Wextra"
110110
"-Wno-unused-parameter"
111111
"-Wno-sign-compare"
112112
# ignore multiple enum conversion warnings since gcc 11

version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
5.3.4

0 commit comments

Comments
 (0)