Skip to content

Commit 71f726b

Browse files
authored
Merge pull request #50 from david-cermak/update/v0.14.1
[v0.14.1]: Update per recent v5.5 changes
2 parents 3c40bfc + f60ab0f commit 71f726b

File tree

5 files changed

+29
-2
lines changed

5 files changed

+29
-2
lines changed

components/esp_wifi_remote/.cz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ commitizen:
33
bump_message: 'bump(wifi_remote): $current_version -> $new_version'
44
pre_bump_hooks: python ../../ci/changelog.py esp_wifi_remote
55
tag_format: wifi_remote-v$version
6-
version: 0.14.0
6+
version: 0.14.1
77
version_files:
88
- idf_component.yml

components/esp_wifi_remote/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.14.1](https://github.com/espressif/esp-wifi-remote/commits/wifi_remote-v0.14.1)
4+
5+
### Bug Fixes
6+
7+
- Update per v5.5 changes ([6264860](https://github.com/espressif/esp-wifi-remote/commit/6264860))
8+
39
## [0.14.0](https://github.com/espressif/esp-wifi-remote/commits/wifi_remote-v0.14.0)
410

511
### Features

components/esp_wifi_remote/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.14.0
1+
version: 0.14.1
22
url: https://github.com/espressif/esp-wifi-remote
33
description: Utility wrapper for esp_wifi functionality on remote targets
44
dependencies:

components/esp_wifi_remote/idf_v5.5/include/injected/esp_wifi.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -999,6 +999,7 @@ esp_err_t esp_wifi_get_promiscuous_ctrl_filter(wifi_promiscuous_filter_t *filter
999999
* - ESP_ERR_WIFI_MODE: invalid mode
10001000
* - ESP_ERR_WIFI_PASSWORD: invalid password
10011001
* - ESP_ERR_WIFI_NVS: WiFi internal NVS error
1002+
* - ESP_ERR_WIFI_STATE: WiFi still connecting when invoke esp_wifi_set_config
10021003
* - others: refer to the error code in esp_err.h
10031004
*/
10041005
esp_err_t esp_wifi_set_config(wifi_interface_t interface, wifi_config_t *conf);

components/esp_wifi_remote/idf_v5.5/include/injected/esp_wifi_types_generic.h

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,7 @@ typedef struct {
246246
wifi_scan_channel_bitmap_t channel_bitmap; /**< Channel bitmap for setting specific channels to be scanned.
247247
Please note that the 'channel' parameter above needs to be set to 0 to allow scanning by bitmap.
248248
Also, note that only allowed channels configured by wifi_country_t can be scanned. */
249+
bool coex_background_scan; /**< Enable it to scan return home channel under coexist */
249250
} wifi_scan_config_t;
250251

251252
/**
@@ -1116,6 +1117,9 @@ typedef enum {
11161117
WIFI_EVENT_AP_WRONG_PASSWORD, /**< a station tried to connect with wrong password */
11171118

11181119
WIFI_EVENT_STA_BEACON_OFFSET_UNSTABLE, /**< Station sampled beacon offset unstable */
1120+
WIFI_EVENT_DPP_URI_READY, /**< DPP URI is ready through Bootstrapping */
1121+
WIFI_EVENT_DPP_CFG_RECVD, /**< Config received via DPP Authentication */
1122+
WIFI_EVENT_DPP_FAILED, /**< DPP failed */
11191123
WIFI_EVENT_MAX, /**< Invalid Wi-Fi event ID */
11201124
} wifi_event_t;
11211125

@@ -1520,6 +1524,22 @@ typedef struct {
15201524
float beacon_success_rate; /**< Received beacon success rate */
15211525
} wifi_event_sta_beacon_offset_unstable_t;
15221526

1527+
/** Argument structure for WIFI_EVENT_DPP_URI_READY event */
1528+
typedef struct {
1529+
uint32_t uri_data_len; /**< URI data length including null termination */
1530+
char uri[]; /**< URI data */
1531+
} wifi_event_dpp_uri_ready_t;
1532+
1533+
/** Argument structure for WIFI_EVENT_DPP_CFG_RECVD event */
1534+
typedef struct {
1535+
wifi_config_t wifi_cfg; /**< Received WIFI config in DPP */
1536+
} wifi_event_dpp_config_received_t;
1537+
1538+
/** Argument structure for WIFI_EVENT_DPP_FAIL event */
1539+
typedef struct {
1540+
int failure_reason; /**< Failure reason */
1541+
} wifi_event_dpp_failed_t;
1542+
15231543
#ifdef __cplusplus
15241544
}
15251545
#endif

0 commit comments

Comments
 (0)