Merge branch 'bugfix/sae_identifier_nvs_v5.5' into 'release/v5.5'

fix(esp_wifi): Set default nvs value for sae identifier to NULL v5.5

See merge request espressif/esp-idf!42273
This commit is contained in:
Jiang Jiang Jian
2025-10-13 19:57:06 +08:00
2 changed files with 2 additions and 2 deletions
@@ -582,7 +582,7 @@ typedef struct {
uint32_t vht_mu_beamformee_disabled: 1; /**< Whether to disable support for operation as an VHT MU beamformee. */
uint32_t vht_mcs8_enabled: 1; /**< Whether to support VHT-MCS8. The default value is 0. */
uint32_t reserved2: 19; /**< Reserved for future feature set */
uint8_t sae_h2e_identifier[SAE_H2E_IDENTIFIER_LEN];/**< Password identifier for H2E. this needs to be null terminated string */
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 */
} wifi_sta_config_t;
/**