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

Commit a48837fe authored by Łukasz Rymanowski's avatar Łukasz Rymanowski
Browse files

csip: Trigger active scan when read group size

Bug: 264224740
Tag: #feature
Test: manual

Merged-In: Ie2204604d03f7c0e8d10c788c1db78271cc0e360
Change-Id: Ie2204604d03f7c0e8d10c788c1db78271cc0e360
(cherry picked from commit 82831536)
parent 59613bcd
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -984,7 +984,11 @@ class CsisClientImpl : public CsisClient {
      return;
    }

    csis_group->SetDesiredSize(value[0]);
    auto new_size = value[0];
    csis_group->SetDesiredSize(new_size);
    if (new_size > csis_group->GetCurrentSize()) {
      CsisActiveDiscovery(csis_group);
    }
  }

  void OnCsisLockReadRsp(uint16_t conn_id, tGATT_STATUS status, uint16_t handle,