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

Commit 2894b96d authored by David Duarte's avatar David Duarte
Browse files

RootCanal: Fix LMP accepted opcode definition

Test: Look at the packets with the BaseBand sniffer
Change-Id: Ic594b06060fb12642dfaedfdf163cdb61963c835
parent ccbb9a73
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -107,19 +107,19 @@ packet ExtendedPacket : Packet(opcode = ESCAPED) {
}

packet Accepted : Packet(opcode = ACCEPTED) {
  _fixed_ = 0 : 1,
  accepted_opcode: Opcode,
  _fixed_ = 0 : 1,
}

packet NotAccepted : Packet(opcode = NOT_ACCEPTED) {
  _fixed_ = 0 : 1,
  not_accepted_opcode: Opcode,
  _fixed_ = 0 : 1,
  error_code: 8,
}

packet AcceptedExt : ExtendedPacket(extended_opcode = ACCEPTED) {
  _fixed_ = 0 : 1,
  accepted_opcode: Opcode,
  _fixed_ = 0 : 1,
  accepted_extended_opcode: ExtendedOpcode,
}