Skip to content

Commit b0e896e

Browse files
me-no-devme-no-dev
andauthored
IDF release/v3.3 cd59d107b (espressif#4708)
Co-authored-by: me-no-dev <[email protected]>
1 parent 08f4665 commit b0e896e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+11
-27
lines changed

‎tools/sdk/include/config/sdkconfig.h‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,7 @@
373373
#defineCONFIG_SPIFFS_PAGE_SIZE 256
374374
#defineCONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED 1
375375
#defineCONFIG_ESP32_DPORT_WORKAROUND 1
376+
#defineCONFIG_GATTS_BLUFI_ENABLE 1
376377
#defineCONFIG_PPP_MSCHAP_SUPPORT 1
377378
#defineCONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 1
378379
#defineCONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT 2048
@@ -395,5 +396,5 @@
395396
#defineCONFIG_BTDM_MODEM_SLEEP_MODE_ORIG 1
396397
#defineCONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_ERROR 1
397398
#defineCONFIG_FATFS_API_ENCODING_ANSI_OEM 1
398-
#defineCONFIG_ARDUINO_IDF_COMMIT "71df1f742"
399+
#defineCONFIG_ARDUINO_IDF_COMMIT "cd59d107b"
399400
#defineCONFIG_ARDUINO_IDF_BRANCH "release/v3.3"

‎tools/sdk/include/esp32/esp_event_legacy.h‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,6 @@ typedef struct{
106106
tcpip_adapter_ip6_info_tip6_info;
107107
} system_event_got_ip6_t;
108108

109-
/** Argument structure of SYSTEM_EVENT_STA_WPS_ER_SUCCESS event */
110-
typedefwifi_event_sta_wps_er_success_tsystem_event_sta_wps_er_success_t;
111-
112109
typedefstruct{
113110
uint8_tmac[6]; /**< MAC address of the station connected to ESP32 soft-AP */
114111
uint8_taid; /**< the aid that ESP32 soft-AP gives to the station connected to */
@@ -136,7 +133,6 @@ typedef union{
136133
system_event_sta_got_ip_tgot_ip; /**< ESP32 station got IP, first time got IP or when IP is changed */
137134
system_event_sta_wps_er_pin_tsta_er_pin; /**< ESP32 station WPS enrollee mode PIN code received */
138135
system_event_sta_wps_fail_reason_tsta_er_fail_reason;/**< ESP32 station WPS enrollee mode failed reason code received */
139-
system_event_sta_wps_er_success_tsta_er_success; /*!< ESP32 station WPS enrollee success */
140136
system_event_ap_staconnected_tsta_connected; /**< a station connected to ESP32 soft-AP */
141137
system_event_ap_stadisconnected_tsta_disconnected; /**< a station disconnected to ESP32 soft-AP */
142138
system_event_ap_probe_req_rx_tap_probereqrecved; /**< ESP32 soft-AP receive probe request packet */

‎tools/sdk/include/esp32/esp_wifi_types.h‎

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -502,19 +502,6 @@ typedef enum{
502502
WIFI_IOCTL_MAX,
503503
} wifi_ioctl_cmd_t;
504504

505-
#defineMAX_SSID_LEN 32
506-
#defineMAX_PASSPHRASE_LEN 64
507-
#defineMAX_WPS_AP_CRED 3
508-
509-
/** Argument structure for WIFI_EVENT_STA_WPS_ER_SUCCESS event */
510-
typedefstruct{
511-
uint8_tap_cred_cnt; /**< Number of AP credentials received */
512-
struct{
513-
uint8_tssid[MAX_SSID_LEN]; /**< SSID of AP */
514-
uint8_tpassphrase[MAX_PASSPHRASE_LEN]; /**< Passphrase for the AP */
515-
} ap_cred[MAX_WPS_AP_CRED]; /**< All AP credentials received from WPS handshake */
516-
} wifi_event_sta_wps_er_success_t;
517-
518505
/**
519506
* @brief Configuration for STA's HT2040 coexist management
520507
*

‎tools/sdk/include/wpa_supplicant/wps/wps.h‎

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1024,14 +1024,13 @@ struct wps_sm{
10241024
u8identity_len;
10251025
u8ownaddr[ETH_ALEN];
10261026
u8bssid[ETH_ALEN];
1027-
u8ssid[MAX_WPS_AP_CRED][MAX_SSID_LEN];
1028-
u8ssid_len[MAX_WPS_AP_CRED];
1029-
charkey[MAX_WPS_AP_CRED][MAX_PASSPHRASE_LEN];
1030-
u8key_len[MAX_WPS_AP_CRED];
1031-
u8ap_cred_cnt;
1027+
u8ssid[32];
1028+
u8ssid_len;
10321029
structwps_device_data*dev;
10331030
u8uuid[16];
10341031
u8eapol_version;
1032+
charkey[64];
1033+
u8key_len;
10351034
ETSTimerwps_timeout_timer;
10361035
ETSTimerwps_msg_timeout_timer;
10371036
ETSTimerwps_scan_timer;
@@ -1055,8 +1054,8 @@ struct wps_sm{
10551054
#defineIEEE80211_CAPINFO_PRIVACY 0x0010
10561055

10571056
structwps_sm*wps_sm_get(void);
1058-
intwps_ssid_save(u8*ssid, u8ssid_len, u8idx);
1059-
intwps_key_save(char*key, u8key_len, u8idx);
1057+
intwps_ssid_save(u8*ssid, u8ssid_len);
1058+
intwps_key_save(char*key, u8key_len);
10601059
intwps_station_wps_register_cb(wps_st_cb_tcb);
10611060
intwps_station_wps_unregister_cb(void);
10621061
intwps_start_pending(void);

‎tools/sdk/ld/esp32.project.ld‎

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

‎tools/sdk/lib/libapp_trace.a‎

0 Bytes
Binary file not shown.

‎tools/sdk/lib/libapp_update.a‎

0 Bytes
Binary file not shown.

‎tools/sdk/lib/libasio.a‎

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

‎tools/sdk/lib/libbt.a‎

0 Bytes
Binary file not shown.

0 commit comments

Comments
(0)