diff --git a/modules/wfa-qt/src/indigo_api_callback_dut.c b/modules/wfa-qt/src/indigo_api_callback_dut.c index 0652f296a5f7..24574dca72a4 100644 --- a/modules/wfa-qt/src/indigo_api_callback_dut.c +++ b/modules/wfa-qt/src/indigo_api_callback_dut.c @@ -1902,6 +1902,15 @@ static int configure_sta_handler(struct packet_wrapper *req, struct packet_wrapp { TLV_PRIVATE_KEY, "SET_NETWORK 0 private_key \"%s\"", "blob://private_key", false }, + { TLV_PHASE1, + "SET_NETWORK 0 phase1 \"%s\"", + NULL, true }, + { TLV_PHASE2, + "SET_NETWORK 0 phase2 \"%s\"", + NULL, true }, + { TLV_PASSWORD, + "SET_NETWORK 0 password \"%s\"", + NULL, true }, }; for (size_t i = 0; i < ARRAY_SIZE(config_cmds); i++) { @@ -1921,8 +1930,6 @@ static int configure_sta_handler(struct packet_wrapper *req, struct packet_wrapp } } - CHECK_SNPRINTF(buffer, sizeof(buffer), - ret, "SET_NETWORK 0 private_key_passwd \"whatever\""); ret = run_qt_command(buffer); CHECK_RET(); ret = run_qt_command("SET_NETWORK 0 ieee80211w 1"); diff --git a/samples/wifi/wfa_qt_app/README.rst b/samples/wifi/wfa_qt_app/README.rst index b962879f048f..0a8a038dbbf2 100644 --- a/samples/wifi/wfa_qt_app/README.rst +++ b/samples/wifi/wfa_qt_app/README.rst @@ -54,6 +54,8 @@ To specify IP addresses, you can edit the following Kconfig options: * Use the :kconfig:option:`CONFIG_NET_CONFIG_USB_IPV4_ADDR` Kconfig option in the :file:`overlay-netusb.conf` file to set the IPv4 address for USB communication. * Use the :kconfig:option:`CONFIG_NET_CONFIG_SLIP_IPV4_ADDR` Kconfig option in the :file:`overlay-slip.conf` file to set the IPv4 address for UART communication. +Set the :kconfig:option:`CONFIG_WIFI_NM_WPA_SUPPLICANT_HEAP` Kconfig option according to the size of the certificates used. + Building and running ******************** diff --git a/west.yml b/west.yml index f1b73dfffdc0..148fff283cfe 100644 --- a/west.yml +++ b/west.yml @@ -65,7 +65,7 @@ manifest: # https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html - name: zephyr repo-path: sdk-zephyr - revision: 34f1aa346560cdbb528caea4d52188ebdeb81c4f + revision: dc45b2a09c7872f52b2ddb00c20bd02eb547a8ae import: # In addition to the zephyr repository itself, NCS also # imports the contents of zephyr/west.yml at the above