-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scan extend changes #12124
Scan extend changes #12124
Commits on Aug 22, 2023
-
manifest: sdk-zephyr: Pull in Wi-Fi scan extension support
Pull in Zephyr changes for Wi-Fi scan extensions feature. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 9f89140 - Browse repository at this point
Copy the full SHA 9f89140View commit details -
drivers: wifi: Update RPU patch to rev#4c28feaf389
PHY: [SHEL-1870]: Coexistence manager to decline all the priority window requests received from SR device. Removed BT request call. Expect LMAC to take care. LMAC: [SHEL-1870]: Wlan BT request call added before calling channel switch and PHY open calls. UMAC: [SHEL-1661]: Modifying scan command in accordance with new scan API extensions. Driver: [SHEL-1782]: Host changes according to new scan command. Signed-off-by: srinivasa raju chintalapati <srinivasaraju.chintalapati@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 4f08247 - Browse repository at this point
Copy the full SHA 4f08247View commit details -
drivers: wifi: Add support for scanning specific bands
Add support for scanning supported individual Wi-Fi frequency bands or combinations thereof. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 59ddb0f - Browse repository at this point
Copy the full SHA 59ddb0fView commit details -
drivers: wifi: Add scan extension for active channel dwell times
Add scan extension to control time spent on active scan channels. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 9b7e9c3 - Browse repository at this point
Copy the full SHA 9b7e9c3View commit details -
drivers: wifi: Add scan extension for passive channel dwell times
Add scan extension to control scanning time spent on channels where passive scanning is used. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 65dea42 - Browse repository at this point
Copy the full SHA 65dea42View commit details -
wifi: Move and rename the NRF700X_SCAN_LIMIT Kconfig parameter
The NRF700x_SCAN_LIMIT Kconfig parameter is now renamed as WIFI_MGMT_SCAN_MAX_BSS_CNT and moved to the Wi-fi sub-system Kconfig. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for fd57a40 - Browse repository at this point
Copy the full SHA fd57a40View commit details -
drivers: wifi: Override the WIFI_MGMT_SCAN_SSID_FILT_MAX param
Override the Wi-Fi sub-system Kconfig parameter WIFI_MGMT_SCAN_SSID_FILT_MAX with our maximum supported value i.e. 2. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for b01da0a - Browse repository at this point
Copy the full SHA b01da0aView commit details -
drivers: wifi: Add scan extension for filtering SSIDs
Add scan extension to scan only for specific SSIDs. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 2d41137 - Browse repository at this point
Copy the full SHA 2d41137View commit details -
drivers: wifi: Add scan extension for specifying channels
Add scan extension to scan only on specific channels. Only 20 MHz channels are supported for now. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 839639b - Browse repository at this point
Copy the full SHA 839639bView commit details -
doc: Update relevant docs with scan extensions information
- Update Wi-Fi shell readme with details about scan extensions. - Update changelog with a note regarding addition of scan extensions. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 5a679d3 - Browse repository at this point
Copy the full SHA 5a679d3View commit details -
drivers: wifi: Add scan extension for forcing passive scan
Add scan extension to force passive scan. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 83d7d79 - Browse repository at this point
Copy the full SHA 83d7d79View commit details -
samples: cellular: modem_shell: Fix gettopt for Wi-Fi builds
Wi-Fi shell now uses getopt from Zephyr which needs an additional header to be included as modem shell uses FreeBSD's port of getopt (downstream only). For Wi-Fi switch to using Zephyr's getopt and include the necessary header file. Signed-off-by: Sachin D Kulkarni <sachin.kulkarni@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for d799d4d - Browse repository at this point
Copy the full SHA d799d4dView commit details
Commits on Aug 23, 2023
-
samples: wifi: scan: Add extending scan changes
Define wifi_scan_params to have multiple set of params for test. Default scan type is active scan. Signed-off-by: Triveni Danda <triveni.danda@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 8c6440f - Browse repository at this point
Copy the full SHA 8c6440fView commit details -
samples: wifi: scan: Add changes to do force passive scan
As plan is to do multiple scans, other than default(active) scan, passive scan can also be done. Can enable/disable the option. Increase stack size to handle multiple scan results. Signed-off-by: Triveni Danda <triveni.danda@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 6acd673 - Browse repository at this point
Copy the full SHA 6acd673View commit details -
samples: wifi: scan: Add 2.4GHZ scan changes
Add option to enable/disable 2.4GHZ scan only Signed-off-by: Triveni Danda <triveni.danda@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for e5bc96d - Browse repository at this point
Copy the full SHA e5bc96dView commit details -
samples: wifi: scan: Add 5GHZ scan changes
Add option to enable/disable 5GHZ scan only Signed-off-by: Triveni Danda <triveni.danda@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for becd623 - Browse repository at this point
Copy the full SHA becd623View commit details -
samples: wifi: scan: Add changes to scan based on ssid
Add option to select ssid based scan. And also, configure ssid list if ssid based scan is selected. Signed-off-by: Triveni Danda <triveni.danda@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 485ed67 - Browse repository at this point
Copy the full SHA 485ed67View commit details -
samples: wifi: scan: Add changes to scan in specific channels
Add option to limit the scanning to specific channels. Signed-off-by: Triveni Danda <triveni.danda@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 3dbec22 - Browse repository at this point
Copy the full SHA 3dbec22View commit details -
samples: wifi: scan: Add scan extension for active channel dwell time
Add scan extension to control time spent on active scan channels. Signed-off-by: Triveni Danda <triveni.danda@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for 256dbbd - Browse repository at this point
Copy the full SHA 256dbbdView commit details -
samples: wifi: scan: Add scan extension for passive channel dwell time
Add scan extension to control time spent on passive scan channels. Signed-off-by: Triveni Danda <triveni.danda@nordicsemi.no>
Configuration menu - View commit details
-
Copy full SHA for e943d24 - Browse repository at this point
Copy the full SHA e943d24View commit details