Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions include/zephyr/bluetooth/classic/hfp_hf.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ struct bt_hfp_hf_current_call {
const char *number;
/** Phone number type format identifier */
uint8_t type;
/** HFP HF call object */
struct bt_hfp_hf_call *call;
};

/** @brief HFP profile application callback */
Expand Down
1 change: 1 addition & 0 deletions subsys/bluetooth/host/classic/hfp_hf.c
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,7 @@ static int clcc_handle(struct at_client *hf_at)
current_call.multiparty = mpty > 0 ? true : false;
current_call.number = number;
current_call.type = (uint8_t)type;
current_call.call = call;

bt_hf->query_call(hf, &current_call);
}
Expand Down