Skip to content

Commit 27fd241

Browse files
committed
samples: wifi: fix wifi connect functionality on NXP frdm_rw612
This change enables hardware entropy support on NXP's frdm_rw612 board to enable wifi connection to an access point in the wifi sample. It also disables a Kconfig flag which was causing incorrect entropy initialization in mbedtls. Signed-off-by: Andrew Nyland <[email protected]>
1 parent 2b5ee0c commit 27fd241

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

samples/net/wifi/shell/boards/frdm_rw612.conf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ CONFIG_WIFI_NXP=y
22
CONFIG_NXP_RW610=y
33
CONFIG_NXP_WIFI_SHELL=y
44

5+
# entropy
6+
CONFIG_ENTROPY_DEVICE_RANDOM_GENERATOR=y
7+
CONFIG_ENTROPY_MCUX_TRNG=y
8+
59
#
610
# C Library
711
#
@@ -84,7 +88,7 @@ CONFIG_WIFI_NM_WPA_SUPPLICANT_CRYPTO_ALT=y
8488
CONFIG_WIFI_NM_WPA_SUPPLICANT_CRYPTO_ENTERPRISE=y
8589
CONFIG_WIFI_NM_WPA_SUPPLICANT_DPP=y
8690
CONFIG_WIFI_NM_WPA_SUPPLICANT_EAPOL=y
87-
CONFIG_WIFI_NM_WPA_SUPPLICANT_CRYPTO_MBEDTLS_PSA=y
91+
CONFIG_WIFI_NM_WPA_SUPPLICANT_CRYPTO_MBEDTLS_PSA=n
8892
CONFIG_WIFI_NM_WPA_SUPPLICANT_INF_MON=n
8993
CONFIG_WIFI_NM_MAX_MANAGED_INTERFACES=2
9094
CONFIG_SAE_PWE_EARLY_EXIT=y

0 commit comments

Comments
 (0)