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

Commit a956cea5 authored by Henri Chataing's avatar Henri Chataing
Browse files

hci_packets: Fix definition of SynchronousPacketTypeBits

Test: bluetooth_test_gd_unit
Change-Id: I6d8848523e8341cdef5cb47a8d090c5e08da9c65
parent 26edcd97
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 {