Skip to content

Commit 77fbeeb

Browse files
D-Trivenirlubos
authored andcommitted
modules: wfa-qt: Enable scan_ssid for proper connection
Without scan_ssid, the STA sends a broadcast probe and relies on filter_ssid to match results. Since filter_ssid is not used, scan_ssid must be enabled to explicitly scan for the configured SSID. Signed-off-by: Triveni Danda <[email protected]>
1 parent e2099c0 commit 77fbeeb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modules/wfa-qt/src/indigo_api_callback_dut.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2002,6 +2002,9 @@ static int configure_sta_handler(struct packet_wrapper *req, struct packet_wrapp
20022002
ret = run_qt_command(buffer);
20032003
CHECK_RET();
20042004
}
2005+
2006+
ret = run_qt_command("SET_NETWORK 0 scan_ssid 1");
2007+
CHECK_RET();
20052008
done:
20062009
fill_wrapper_message_hdr(resp, API_CMD_RESPONSE, req->hdr.seq);
20072010
fill_wrapper_tlv_byte(resp, TLV_STATUS, status);

0 commit comments

Comments
 (0)