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

Commit f3122155 authored by Chris Manton's avatar Chris Manton
Browse files

Move tBTM_CHG_ESCO_PARAMS from header to source

Bug: 224999611
Test: mma .

Change-Id: I2dc7f0b2e8ee1ea3c65ab96cbf2cb099dbb8f482
parent 6e8c8891
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -69,6 +69,16 @@ static const char kPropertyDisableEnhancedConnection[] =
    "bluetooth.sco.disable_enhanced_connection";

namespace {

/* Structure passed with SCO change command and events.
 * Used by both Sync and Enhanced sync messaging
 */
typedef struct {
  uint16_t max_latency_ms;
  uint16_t packet_types;
  uint8_t retransmission_effort;
} tBTM_CHG_ESCO_PARAMS;

constexpr char kBtmLogTag[] = "SCO";

const bluetooth::legacy::hci::Interface& GetLegacyHciInterface() {
+0 −9
Original line number Diff line number Diff line
@@ -194,15 +194,6 @@ typedef void(tBTM_SCO_CB)(uint16_t sco_inx);
#define BTM_ESCO_CONN_REQ_EVT 2
typedef uint8_t tBTM_ESCO_EVT;

/* Structure passed with SCO change command and events.
 * Used by both Sync and Enhanced sync messaging
 */
typedef struct {
  uint16_t max_latency_ms;
  uint16_t packet_types;
  uint8_t retransmission_effort;
} tBTM_CHG_ESCO_PARAMS;

/* Returned by BTM_ReadEScoLinkParms() */
struct tBTM_ESCO_DATA {
  RawAddress bd_addr;