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

Commit 9f3e26ae authored by Henri Chataing's avatar Henri Chataing
Browse files

Correct the LE event mask for HCI v5.0

LE_Event_Mask has 20 significant bits
in the core specification v5.0

Bug: 328842792
Test: None
Flag: EXEMPT, constant change
Change-Id: I79eaad3a1c81327486fbe90075aa75eab6aa15e7
parent ad5af05a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -208,7 +208,7 @@ class Controller : public Module, public ControllerInterface {
  static constexpr uint64_t kLeEventMask53 = 0x00000007ffffffff;
  static constexpr uint64_t kLeEventMask52 = 0x00000003ffffffff;
  static constexpr uint64_t kLeEventMask51 = 0x0000000000ffffff;
  static constexpr uint64_t kLeEventMask50 = 0x0000000000ffffff;
  static constexpr uint64_t kLeEventMask50 = 0x00000000000fffff;
  static constexpr uint64_t kLeEventMask42 = 0x00000000000003ff;
  static constexpr uint64_t kLeEventMask41 = 0x000000000000003f;