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

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

Merge "hci: CreateConnectionRoleSwitch is 8 bits"

parents aa56ec6c 3c305b7f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -516,9 +516,9 @@ enum ClockOffsetValid : 1 {
  VALID = 1,
}

enum CreateConnectionRoleSwitch : 1 {
  REMAIN_MASTER = 0,
  ALLOW_ROLE_SWITCH = 1,
enum CreateConnectionRoleSwitch : 8 {
  REMAIN_MASTER = 0x00,
  ALLOW_ROLE_SWITCH = 0x01,
}

packet CreateConnection : CreateConnectionCommand (OpCode = CREATE_CONNECTION) {