Skip to content
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

Closed
wants to merge 20 commits into from
Closed

Commits on Aug 22, 2023

  1. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    9f89140 View commit details
    Browse the repository at this point in the history
  2. 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>
    srinivas1201 authored and sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    4f08247 View commit details
    Browse the repository at this point in the history
  3. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    59ddb0f View commit details
    Browse the repository at this point in the history
  4. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    9b7e9c3 View commit details
    Browse the repository at this point in the history
  5. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    65dea42 View commit details
    Browse the repository at this point in the history
  6. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    fd57a40 View commit details
    Browse the repository at this point in the history
  7. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    b01da0a View commit details
    Browse the repository at this point in the history
  8. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    2d41137 View commit details
    Browse the repository at this point in the history
  9. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    839639b View commit details
    Browse the repository at this point in the history
  10. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    5a679d3 View commit details
    Browse the repository at this point in the history
  11. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    83d7d79 View commit details
    Browse the repository at this point in the history
  12. 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>
    sachinthegreen committed Aug 22, 2023
    Configuration menu
    Copy the full SHA
    d799d4d View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. 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>
    D-Triveni committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    8c6440f View commit details
    Browse the repository at this point in the history
  2. 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>
    D-Triveni committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    6acd673 View commit details
    Browse the repository at this point in the history
  3. 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>
    D-Triveni committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    e5bc96d View commit details
    Browse the repository at this point in the history
  4. samples: wifi: scan: Add 5GHZ scan changes

    Add option to enable/disable 5GHZ scan only
    
    Signed-off-by: Triveni Danda <triveni.danda@nordicsemi.no>
    D-Triveni committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    becd623 View commit details
    Browse the repository at this point in the history
  5. 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>
    D-Triveni committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    485ed67 View commit details
    Browse the repository at this point in the history
  6. 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>
    D-Triveni committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    3dbec22 View commit details
    Browse the repository at this point in the history
  7. 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>
    D-Triveni committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    256dbbd View commit details
    Browse the repository at this point in the history
  8. 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>
    D-Triveni committed Aug 23, 2023
    Configuration menu
    Copy the full SHA
    e943d24 View commit details
    Browse the repository at this point in the history