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

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

btm/iso: Add sequence number to the cis data event

This is needed to synchronize multiple microphones.

Bug: 150670922
Tag: #feature
Test: Compile
Sponsor: @jpawlowski
Change-Id: I3cf0eee0dc1644db81f2142c6b2b80c3bdc2a0e4
parent 86f7cbc8
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -690,6 +690,7 @@ struct iso_impl {

    evt.p_msg = p_msg;
    evt.cig_id = iso->cig_id;
    evt.seq_nb = seq_nb;
    cig_callbacks_->OnCisEvent(kIsoEventCisDataAvailable, &evt);
  }

+1 −0
Original line number Diff line number Diff line
@@ -95,6 +95,7 @@ struct cis_data_evt {
  uint16_t cis_conn_hdl;
  uint32_t ts;
  uint16_t evt_lost;
  uint16_t seq_nb;
  BT_HDR* p_msg;
};