Skip to content

Commit 93cc864

Browse files
committed
fix(wifi_remote): Update per v5.3 changes
1 parent 56456f3 commit 93cc864

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

components/esp_wifi_remote/idf_v5.3/Kconfig.wifi.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,7 @@ config WIFI_RMT_WAPI_PSK
522522
config WIFI_RMT_SUITE_B_192
523523
bool "Enable NSA suite B support with 192 bit key"
524524
default n
525+
depends on WIFI_RMT_ENTERPRISE_SUPPORT
525526
depends on SLAVE_SOC_WIFI_GCMP_SUPPORT
526527
select WIFI_RMT_GCMP_SUPPORT
527528
select WIFI_RMT_GMAC_SUPPORT

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ typedef struct {
456456
uint32_t he_trig_mu_bmforming_partial_feedback_disabled: 1; /**< Whether to disable support the transmission of partial-bandwidth MU feedback in an HE TB sounding sequence. */
457457
uint32_t he_trig_cqi_feedback_disabled: 1; /**< Whether to disable support the transmission of CQI feedback in an HE TB sounding sequence. */
458458
uint32_t he_reserved: 22; /**< Reserved for future feature set */
459-
uint8_t sae_h2e_identifier[SAE_H2E_IDENTIFIER_LEN]; /**< Password identifier for H2E. this needs to be null terminated string */
459+
uint8_t sae_h2e_identifier[SAE_H2E_IDENTIFIER_LEN]; /**< Password identifier for H2E. Strings null-terminated (length < SAE_H2E_IDENTIFIER_LEN) or non-null terminated (length = SAE_H2E_IDENTIFIER_LEN) are accepted. Non-null terminated string with 0xFF for full length of SAE_H2E_IDENTIFIER_LEN is not considered a valid identifier */
460460
} wifi_sta_config_t;
461461

462462
/**

0 commit comments

Comments
 (0)