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
5 changes: 4 additions & 1 deletion modules/wfa-qt/src/indigo_api_callback_dut.c
Original file line number Diff line number Diff line change
Expand Up @@ -1883,7 +1883,7 @@ static int configure_sta_handler(struct packet_wrapper *req, struct packet_wrapp
ret = run_qt_command(buffer);
CHECK_RET();
} else {
ret = run_qt_command("SET_NETWORK 0 ieee80211w 0");
ret = run_qt_command("SET_NETWORK 0 ieee80211w 1");
CHECK_RET();
}
} else if (strstr(tlv->value, "SAE")) {
Expand Down Expand Up @@ -2002,6 +2002,9 @@ static int configure_sta_handler(struct packet_wrapper *req, struct packet_wrapp
ret = run_qt_command(buffer);
CHECK_RET();
}

ret = run_qt_command("SET_NETWORK 0 scan_ssid 1");
CHECK_RET();
done:
fill_wrapper_message_hdr(resp, API_CMD_RESPONSE, req->hdr.seq);
fill_wrapper_tlv_byte(resp, TLV_STATUS, status);
Expand Down
1 change: 1 addition & 0 deletions samples/wifi/promiscuous/prj.conf
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ CONFIG_NET_SOCKETS_POLL_MAX=10
CONFIG_MAIN_STACK_SIZE=5200
CONFIG_NET_TX_STACK_SIZE=4096
CONFIG_NET_RX_STACK_SIZE=4096
CONFIG_NET_PKT_BUF_RX_DATA_POOL_SIZE=20000

# Debugging
CONFIG_STACK_SENTINEL=y
Expand Down
9 changes: 6 additions & 3 deletions west.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ manifest:
# https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/zephyr/guides/modules.html
- name: zephyr
repo-path: sdk-zephyr
revision: ncs-v3.2.0-rc1
revision: bc6fb827975e26e7f8ea8f4ddd07e60098679431
import:
# In addition to the zephyr repository itself, NCS also
# imports the contents of zephyr/west.yml at the above
Expand All @@ -90,7 +90,6 @@ manifest:
- hal_st # required for ST sensors (unrelated to STM32 MCUs)
- hal_tdk # required for Invensense sensors such as ICM42670
- hal_wurthelektronik
- hostap
- liblc3
- libmetal
- littlefs
Expand All @@ -115,6 +114,10 @@ manifest:
#
# Some of these are also Zephyr modules which have NCS-specific
# changes.
- name: hostap
repo-path: sdk-hostap
path: modules/lib/hostap
revision: 528eb2d95e35c7c9b187a15d2fb7f6e5bb983181
- name: wfa-qt-control-app
repo-path: sdk-wi-fiquicktrack-controlappc
path: modules/lib/wfa-qt-control-app
Expand Down Expand Up @@ -143,7 +146,7 @@ manifest:
- name: nrfxlib
repo-path: sdk-nrfxlib
path: nrfxlib
revision: e86a297c89d6e6e77e67f49034fc25fbb4ae8805
revision: 3232b78b729fc7d927f08c58cc8855c95ca38d58
- name: trusted-firmware-m
repo-path: sdk-trusted-firmware-m
path: modules/tee/tf-m/trusted-firmware-m
Expand Down
Loading