Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions modules/wfa-qt/src/indigo_api_callback_dut.c
Original file line number Diff line number Diff line change
Expand Up @@ -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++) {
Expand All @@ -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");
Expand Down
2 changes: 2 additions & 0 deletions samples/wifi/wfa_qt_app/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
********************

Expand Down
2 changes: 1 addition & 1 deletion west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading