Loading system/main/shim/hci_layer.cc +6 −6 Original line number Diff line number Diff line Loading @@ -357,7 +357,7 @@ static void set_data_cb( void OnTransmitPacketCommandComplete(command_complete_cb complete_callback, void* context, bluetooth::hci::CommandCompleteView view) { LOG_INFO("Received cmd complete for %s", LOG_DEBUG("Received cmd complete for %s", bluetooth::hci::OpCodeText(view.GetCommandOpCode()).c_str()); std::vector<const uint8_t> data(view.begin(), view.end()); BT_HDR* response = WrapPacketAndCopy(MSG_HC_TO_STACK_HCI_EVT, &view); Loading Loading @@ -385,7 +385,7 @@ class OsiObject { void OnTransmitPacketStatus(command_status_cb status_callback, void* context, std::unique_ptr<OsiObject> command, bluetooth::hci::CommandStatusView view) { LOG_INFO("Received cmd status %s for %s", LOG_DEBUG("Received cmd status %s for %s", bluetooth::hci::ErrorCodeText(view.GetStatus()).c_str(), bluetooth::hci::OpCodeText(view.GetCommandOpCode()).c_str()); uint8_t status = static_cast<uint8_t>(view.GetStatus()); Loading Loading @@ -416,7 +416,7 @@ static void transmit_command(BT_HDR* command, auto packet = bluetooth::hci::CommandPacketBuilder::Create(op_code, std::move(payload)); LOG_INFO("Sending command %s", bluetooth::hci::OpCodeText(op_code).c_str()); LOG_DEBUG("Sending command %s", bluetooth::hci::OpCodeText(op_code).c_str()); if (IsCommandStatusOpcode(op_code)) { auto command_unique = std::make_unique<OsiObject>(command); Loading Loading
system/main/shim/hci_layer.cc +6 −6 Original line number Diff line number Diff line Loading @@ -357,7 +357,7 @@ static void set_data_cb( void OnTransmitPacketCommandComplete(command_complete_cb complete_callback, void* context, bluetooth::hci::CommandCompleteView view) { LOG_INFO("Received cmd complete for %s", LOG_DEBUG("Received cmd complete for %s", bluetooth::hci::OpCodeText(view.GetCommandOpCode()).c_str()); std::vector<const uint8_t> data(view.begin(), view.end()); BT_HDR* response = WrapPacketAndCopy(MSG_HC_TO_STACK_HCI_EVT, &view); Loading Loading @@ -385,7 +385,7 @@ class OsiObject { void OnTransmitPacketStatus(command_status_cb status_callback, void* context, std::unique_ptr<OsiObject> command, bluetooth::hci::CommandStatusView view) { LOG_INFO("Received cmd status %s for %s", LOG_DEBUG("Received cmd status %s for %s", bluetooth::hci::ErrorCodeText(view.GetStatus()).c_str(), bluetooth::hci::OpCodeText(view.GetCommandOpCode()).c_str()); uint8_t status = static_cast<uint8_t>(view.GetStatus()); Loading Loading @@ -416,7 +416,7 @@ static void transmit_command(BT_HDR* command, auto packet = bluetooth::hci::CommandPacketBuilder::Create(op_code, std::move(payload)); LOG_INFO("Sending command %s", bluetooth::hci::OpCodeText(op_code).c_str()); LOG_DEBUG("Sending command %s", bluetooth::hci::OpCodeText(op_code).c_str()); if (IsCommandStatusOpcode(op_code)) { auto command_unique = std::make_unique<OsiObject>(command); Loading