Loading tools/rootcanal/model/controller/dual_mode_controller.cc +11 −1 Original line number Diff line number Diff line Loading @@ -3141,8 +3141,18 @@ void DualModeController::LeApcf(CommandView command) { break; } default: FATAL(id_, "unknown APCF opcode {}", ERROR(id_, "unknown APCF opcode {:#x}", static_cast<uint8_t>(command_view.GetApcfOpcode())); send_event_(bluetooth::hci::LeApcfCompleteBuilder::Create( kNumCommandPackets, ErrorCode::INVALID_HCI_COMMAND_PARAMETERS, command_view.GetApcfOpcode(), std::vector<uint8_t>{})); invalid_packet_handler_( id_, InvalidPacketReason::kUnsupported, fmt::format("unsupported APCF opcode {:#x}", static_cast<uint8_t>(command_view.GetApcfOpcode())), command_view.bytes().bytes()); } } Loading Loading
tools/rootcanal/model/controller/dual_mode_controller.cc +11 −1 Original line number Diff line number Diff line Loading @@ -3141,8 +3141,18 @@ void DualModeController::LeApcf(CommandView command) { break; } default: FATAL(id_, "unknown APCF opcode {}", ERROR(id_, "unknown APCF opcode {:#x}", static_cast<uint8_t>(command_view.GetApcfOpcode())); send_event_(bluetooth::hci::LeApcfCompleteBuilder::Create( kNumCommandPackets, ErrorCode::INVALID_HCI_COMMAND_PARAMETERS, command_view.GetApcfOpcode(), std::vector<uint8_t>{})); invalid_packet_handler_( id_, InvalidPacketReason::kUnsupported, fmt::format("unsupported APCF opcode {:#x}", static_cast<uint8_t>(command_view.GetApcfOpcode())), command_view.bytes().bytes()); } } Loading