Skip to content

Commit

Permalink
feat(ble/bluedroid): Support BLE command status debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
esp-zhp committed Apr 26, 2024
1 parent 0fcc940 commit 212f316
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions components/bt/host/bluedroid/stack/btu/btu_hcif.c
Original file line number Diff line number Diff line change
Expand Up @@ -1252,6 +1252,9 @@ static void btu_hcif_command_complete_evt(BT_HDR *response, void *context)
static void btu_hcif_hdl_command_status (UINT16 opcode, UINT8 status, UINT8 *p_cmd,
void *p_vsc_status_cback)
{
if (status != HCI_SUCCESS){
HCI_TRACE_WARNING("%s,opcode:0x%04x,status:0x%02x", __func__, opcode,status);
}
BD_ADDR bd_addr;
UINT16 handle;
#if BTM_SCO_INCLUDED == TRUE
Expand Down

0 comments on commit 212f316

Please sign in to comment.