From b0add1d19c442f355775c7614bdefb48cf319eb9 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Fri, 4 Jul 2025 12:15:30 +0200 Subject: [PATCH 1/2] fix(wifi_remote): Update per v5.3 and v5.5 changes --- components/esp_wifi_remote/idf_v5.3/include/injected/esp_wifi.h | 1 + .../idf_v5.3/include/injected/esp_wifi_types_generic.h | 1 + .../idf_v5.5/include/injected/esp_wifi_types_generic.h | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/components/esp_wifi_remote/idf_v5.3/include/injected/esp_wifi.h b/components/esp_wifi_remote/idf_v5.3/include/injected/esp_wifi.h index 5f89cef..eba999c 100644 --- a/components/esp_wifi_remote/idf_v5.3/include/injected/esp_wifi.h +++ b/components/esp_wifi_remote/idf_v5.3/include/injected/esp_wifi.h @@ -974,6 +974,7 @@ esp_err_t esp_wifi_get_promiscuous_ctrl_filter(wifi_promiscuous_filter_t *filter * - ESP_ERR_WIFI_MODE: invalid mode * - ESP_ERR_WIFI_PASSWORD: invalid password * - ESP_ERR_WIFI_NVS: WiFi internal NVS error + * - ESP_ERR_WIFI_STATE: WiFi still connecting when invoke esp_wifi_set_config * - others: refer to the error code in esp_err.h */ esp_err_t esp_wifi_set_config(wifi_interface_t interface, wifi_config_t *conf); diff --git a/components/esp_wifi_remote/idf_v5.3/include/injected/esp_wifi_types_generic.h b/components/esp_wifi_remote/idf_v5.3/include/injected/esp_wifi_types_generic.h index 828ee2a..46c1528 100644 --- a/components/esp_wifi_remote/idf_v5.3/include/injected/esp_wifi_types_generic.h +++ b/components/esp_wifi_remote/idf_v5.3/include/injected/esp_wifi_types_generic.h @@ -414,6 +414,7 @@ typedef struct { wifi_pmf_config_t pmf_cfg; /**< Configuration for Protected Management Frame */ wifi_sae_pwe_method_t sae_pwe_h2e; /**< Configuration for SAE PWE derivation method */ uint8_t transition_disable; /**< Whether to enable transition disable feature */ + uint8_t sae_ext; /**< Enable SAE EXT feature. SOC_GCMP_SUPPORT is required for this feature. */ } wifi_ap_config_t; #define SAE_H2E_IDENTIFIER_LEN 32 /**< Length of the password identifier for H2E */ diff --git a/components/esp_wifi_remote/idf_v5.5/include/injected/esp_wifi_types_generic.h b/components/esp_wifi_remote/idf_v5.5/include/injected/esp_wifi_types_generic.h index bf76648..cccc0ee 100644 --- a/components/esp_wifi_remote/idf_v5.5/include/injected/esp_wifi_types_generic.h +++ b/components/esp_wifi_remote/idf_v5.5/include/injected/esp_wifi_types_generic.h @@ -1467,7 +1467,7 @@ typedef struct { bool dcm; /**< Using dcm rate to send frame */ } wifi_tx_rate_config_t; -#define WIFI_MAX_SUPPORT_COUNTRY_NUM 175 /**< max number of supported countries */ +#define WIFI_MAX_SUPPORT_COUNTRY_NUM 176 /**< max number of supported countries */ #ifdef CONFIG_SLAVE_SOC_WIFI_SUPPORT_5G #define WIFI_MAX_REGULATORY_RULE_NUM 7 /**< max number of regulatory rules */ #else From c07e6f8afc596e5a0d39ddd6427699fe40942b0c Mon Sep 17 00:00:00 2001 From: David Cermak Date: Fri, 4 Jul 2025 12:16:43 +0200 Subject: [PATCH 2/2] bump(wifi_remote): 0.14.2 -> 0.14.3 0.14.3 Bug Fixes - Update per v5.3 and v5.5 changes (b0add1d) --- components/esp_wifi_remote/.cz.yaml | 2 +- components/esp_wifi_remote/CHANGELOG.md | 6 ++++++ components/esp_wifi_remote/idf_component.yml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/components/esp_wifi_remote/.cz.yaml b/components/esp_wifi_remote/.cz.yaml index dfb7610..395917e 100644 --- a/components/esp_wifi_remote/.cz.yaml +++ b/components/esp_wifi_remote/.cz.yaml @@ -3,6 +3,6 @@ commitizen: bump_message: 'bump(wifi_remote): $current_version -> $new_version' pre_bump_hooks: python ../../ci/changelog.py esp_wifi_remote tag_format: wifi_remote-v$version - version: 0.14.2 + version: 0.14.3 version_files: - idf_component.yml diff --git a/components/esp_wifi_remote/CHANGELOG.md b/components/esp_wifi_remote/CHANGELOG.md index e957408..0f115ee 100644 --- a/components/esp_wifi_remote/CHANGELOG.md +++ b/components/esp_wifi_remote/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.14.3](https://github.com/espressif/esp-wifi-remote/commits/wifi_remote-v0.14.3) + +### Bug Fixes + +- Update per v5.3 and v5.5 changes ([b0add1d](https://github.com/espressif/esp-wifi-remote/commit/b0add1d)) + ## [0.14.2](https://github.com/espressif/esp-wifi-remote/commits/wifi_remote-v0.14.2) ### Bug Fixes diff --git a/components/esp_wifi_remote/idf_component.yml b/components/esp_wifi_remote/idf_component.yml index 1a7b483..57202de 100644 --- a/components/esp_wifi_remote/idf_component.yml +++ b/components/esp_wifi_remote/idf_component.yml @@ -1,4 +1,4 @@ -version: 0.14.2 +version: 0.14.3 url: https://github.com/espressif/esp-wifi-remote description: Utility wrapper for esp_wifi functionality on remote targets dependencies: