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

manifest: sdk-zephyr: Pull Wi-Fi shell improvements #13504

Merged
merged 6 commits into from
Jan 4, 2024

Commits on Jan 4, 2024

  1. manifest: sdk-zephyr: Pull Wi-Fi shell improvements

    Mainly in help and argument count fixes.
    
    Signed-off-by: Chaitanya Tata <[email protected]>
    krish2718 committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    557dac1 View commit details
    Browse the repository at this point in the history
  2. drivers: wifi: Memset scan_info after mem allocation

    Write 0s to scan_info after allocation to prevent reading of stale
    data.
    
    Signed-off-by: Ravi Dondaputi <[email protected]>
    rado17 authored and krish2718 committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    7642d65 View commit details
    Browse the repository at this point in the history
  3. drivers: wifi: Modify channel input for scan

    Based on the modifications done to channel field in scan params,
    change the way channel info is read into scan_info.
    For reading SSIDs from scan params, add a NULL check along with the
    existing strlen check, since strlen may return a non-zero value
    even for NULL pointer.
    
    Signed-off-by: Ravi Dondaputi <[email protected]>
    rado17 authored and krish2718 committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    bfe9ee0 View commit details
    Browse the repository at this point in the history
  4. drivers: wifi: List out the Kconfig options that were removed

    List out the Kconfig options related to scan operations, that were
    removed from zephyr upstream.
    
    Signed-off-by: Ravi Dondaputi <[email protected]>
    rado17 authored and krish2718 committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    d0b0008 View commit details
    Browse the repository at this point in the history
  5. drivers: wifi: Define MAX_BSS_CNT in driver

    WIFI_MGMT_SCAN_MAX_BSS_CNT has been removed from upstream zephyr.
    Moving the definition to Wi-Fi driver to fix build issues seen with
    the sample using this Kconfig option.
    
    Signed-off-by: Ravi Dondaputi <[email protected]>
    rado17 authored and krish2718 committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    a816cdc View commit details
    Browse the repository at this point in the history
  6. samples: wifi: scan: Define missing Kconfig options locally

    As part of upstream zephyr changes, a couple of Konfig options have
    been removed and need to be defined locally by the sample.
    
    Signed-off-by: Ravi Dondaputi <[email protected]>
    rado17 authored and krish2718 committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    bbb33de View commit details
    Browse the repository at this point in the history