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

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

Merge "hci_packets: Fix definition of SynchronousPacketTypeBits"

parents da6f99b4 a956cea5
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -1330,16 +1330,16 @@ enum ScoDataPath : 8 {
}

enum SynchronousPacketTypeBits : 16 {
  HV1_ALLOWED = 0x0000,
  HV2_ALLOWED = 0x0001,
  HV3_ALLOWED = 0x0002,
  EV3_ALLOWED = 0x0004,
  EV4_ALLOWED = 0x0008,
  EV5_ALLOWED = 0x0010,
  NO_2_EV3_ALLOWED = 0x0020,
  NO_3_EV3_ALLOWED = 0x0040,
  NO_2_EV5_ALLOWED = 0x0080,
  NO_3_EV5_ALLOWED = 0x0100,
  HV1_ALLOWED = 0x0001,
  HV2_ALLOWED = 0x0002,
  HV3_ALLOWED = 0x0004,
  EV3_ALLOWED = 0x0008,
  EV4_ALLOWED = 0x0010,
  EV5_ALLOWED = 0x0020,
  NO_2_EV3_ALLOWED = 0x0040,
  NO_3_EV3_ALLOWED = 0x0080,
  NO_2_EV5_ALLOWED = 0x0100,
  NO_3_EV5_ALLOWED = 0x0200,
}

enum RetransmissionEffort : 8 {