Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f297caed authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "wifi: Fetch the gscan bucket idx from request"

parents 7bf6dc81 4cf4059c
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -354,7 +354,10 @@ bool convertHidlGscanParamsToLegacy(
        hidl_scan_params.buckets[bucket_idx];
    legacy_hal::wifi_scan_bucket_spec& legacy_bucket_spec =
        legacy_scan_params->buckets[bucket_idx];
    legacy_bucket_spec.bucket = bucket_idx;
    if (hidl_bucket_spec.bucketIdx >= MAX_BUCKETS) {
      return false;
    }
    legacy_bucket_spec.bucket = hidl_bucket_spec.bucketIdx;
    legacy_bucket_spec.band =
        convertHidlWifiBandToLegacy(hidl_bucket_spec.band);
    legacy_bucket_spec.period = hidl_bucket_spec.periodInMs;
+5 −0
Original line number Diff line number Diff line
@@ -319,6 +319,11 @@ enum StaScanLimits : uint32_t {
 * scan requests.
 */
struct StaBackgroundScanBucketParameters {
  /**
   * Bucket index. This index is used to report results in
   * |StaScanData.bucketsScanned|.
   */
  uint32_t bucketIdx;
  /**
   * Bands to scan or |BAND_UNSPECIFIED| if frequencies list must be used
   * instead.