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

Commit 3c305b7f authored by Myles Watson's avatar Myles Watson
Browse files

hci: CreateConnectionRoleSwitch is 8 bits

Test: Manual comparison with the spec
      Vol 2 Part E 7.1.5 Command Parameter Allow_Role_Switch
Change-Id: Iaa7df5c3c946e3740115df79f14bfae0ddf872b6
parent 8e99937a
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) {