From 7233b50f4135a9e533a997bbb7b3fceeb1dc1bff Mon Sep 17 00:00:00 2001 From: Sathish Narasimman Date: Wed, 21 Sep 2022 15:57:32 +0530 Subject: Profiles: Enable bt_vcp_set_debug Set bt_vcp_set_debug to be used for VCP. --- profiles/audio/vcp.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'profiles') diff --git a/profiles/audio/vcp.c b/profiles/audio/vcp.c index e7e84174e..b42b0a4f7 100644 --- a/profiles/audio/vcp.c +++ b/profiles/audio/vcp.c @@ -62,6 +62,11 @@ struct vcp_data { static struct queue *sessions; +static void vcp_debug(const char *str, void *user_data) +{ + DBG_IDX(0xffff, "%s", str); +} + static int vcp_disconnect(struct btd_service *service) { DBG(""); @@ -87,6 +92,8 @@ static void vcp_data_add(struct vcp_data *data) return; } + bt_vcp_set_debug(data->vcp, vcp_debug, NULL, NULL); + if (!sessions) sessions = queue_new(); -- cgit v1.2.1