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
#define CONFIG_SPIFFS_PAGE_SIZE 256
374374
#define CONFIG_MBEDTLS_ECP_DP_SECP192K1_ENABLED 1
375375
#define CONFIG_ESP32_DPORT_WORKAROUND 1
376+
#define CONFIG_GATTS_BLUFI_ENABLE 1
376377
#define CONFIG_PPP_MSCHAP_SUPPORT 1
377378
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 1
378379
#define CONFIG_ESP32_PTHREAD_TASK_STACK_SIZE_DEFAULT 2048
@@ -395,5 +396,5 @@
395396
#define CONFIG_BTDM_MODEM_SLEEP_MODE_ORIG 1
396397
#define CONFIG_ARDUHAL_LOG_DEFAULT_LEVEL_ERROR 1
397398
#define CONFIG_FATFS_API_ENCODING_ANSI_OEM 1
398-
#define CONFIG_ARDUINO_IDF_COMMIT "71df1f742"
399+
#define CONFIG_ARDUINO_IDF_COMMIT "cd59d107b"
399400
#define CONFIG_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_t ip6_info;
107107
} system_event_got_ip6_t;
108108

109-
/** Argument structure of SYSTEM_EVENT_STA_WPS_ER_SUCCESS event */
110-
typedef wifi_event_sta_wps_er_success_t system_event_sta_wps_er_success_t;
111-
112109
typedef struct {
113110
uint8_t mac[6]; /**< MAC address of the station connected to ESP32 soft-AP */
114111
uint8_t aid; /**< the aid that ESP32 soft-AP gives to the station connected to */
@@ -136,7 +133,6 @@ typedef union {
136133
system_event_sta_got_ip_t got_ip; /**< ESP32 station got IP, first time got IP or when IP is changed */
137134
system_event_sta_wps_er_pin_t sta_er_pin; /**< ESP32 station WPS enrollee mode PIN code received */
138135
system_event_sta_wps_fail_reason_t sta_er_fail_reason;/**< ESP32 station WPS enrollee mode failed reason code received */
139-
system_event_sta_wps_er_success_t sta_er_success; /*!< ESP32 station WPS enrollee success */
140136
system_event_ap_staconnected_t sta_connected; /**< a station connected to ESP32 soft-AP */
141137
system_event_ap_stadisconnected_t sta_disconnected; /**< a station disconnected to ESP32 soft-AP */
142138
system_event_ap_probe_req_rx_t ap_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-
#define MAX_SSID_LEN 32
506-
#define MAX_PASSPHRASE_LEN 64
507-
#define MAX_WPS_AP_CRED 3
508-
509-
/** Argument structure for WIFI_EVENT_STA_WPS_ER_SUCCESS event */
510-
typedef struct {
511-
uint8_t ap_cred_cnt; /**< Number of AP credentials received */
512-
struct {
513-
uint8_t ssid[MAX_SSID_LEN]; /**< SSID of AP */
514-
uint8_t passphrase[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
u8 identity_len;
10251025
u8 ownaddr[ETH_ALEN];
10261026
u8 bssid[ETH_ALEN];
1027-
u8 ssid[MAX_WPS_AP_CRED][MAX_SSID_LEN];
1028-
u8 ssid_len[MAX_WPS_AP_CRED];
1029-
char key[MAX_WPS_AP_CRED][MAX_PASSPHRASE_LEN];
1030-
u8 key_len[MAX_WPS_AP_CRED];
1031-
u8 ap_cred_cnt;
1027+
u8 ssid[32];
1028+
u8 ssid_len;
10321029
struct wps_device_data *dev;
10331030
u8 uuid[16];
10341031
u8 eapol_version;
1032+
char key[64];
1033+
u8 key_len;
10351034
ETSTimer wps_timeout_timer;
10361035
ETSTimer wps_msg_timeout_timer;
10371036
ETSTimer wps_scan_timer;
@@ -1055,8 +1054,8 @@ struct wps_sm {
10551054
#define IEEE80211_CAPINFO_PRIVACY 0x0010
10561055

10571056
struct wps_sm *wps_sm_get(void);
1058-
int wps_ssid_save(u8 *ssid, u8 ssid_len, u8 idx);
1059-
int wps_key_save(char *key, u8 key_len, u8 idx);
1057+
int wps_ssid_save(u8 *ssid, u8 ssid_len);
1058+
int wps_key_save(char *key, u8 key_len);
10601059
int wps_station_wps_register_cb(wps_st_cb_t cb);
10611060
int wps_station_wps_unregister_cb(void);
10621061
int wps_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.

tools/sdk/lib/libbootloader_support.a

0 Bytes
Binary file not shown.

tools/sdk/lib/libbt.a

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)