From 0bd91fba60b652d32ece15a27ac365ea24816416 Mon Sep 17 00:00:00 2001 From: Milanka Ringwald Date: Mon, 31 Mar 2025 13:30:50 +0200 Subject: [PATCH] avrcp_controller: increase timeout for AVRC command --- src/classic/avrcp_controller.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classic/avrcp_controller.c b/src/classic/avrcp_controller.c index 539df0052..26c81d25c 100644 --- a/src/classic/avrcp_controller.c +++ b/src/classic/avrcp_controller.c @@ -732,7 +732,7 @@ static void avrcp_controller_response_timer_start(avrcp_connection_t * connectio btstack_run_loop_remove_timer(&connection->controller_response_cmd_timer); btstack_run_loop_set_timer_handler(&connection->controller_response_cmd_timer, avrcp_controller_response_timeout_handler); btstack_run_loop_set_timer_context(&connection->controller_response_cmd_timer, connection); - btstack_run_loop_set_timer(&connection->controller_response_cmd_timer, 200); // 200ms timeout + btstack_run_loop_set_timer(&connection->controller_response_cmd_timer, 250); // 200ms timeout for AVRC command + 50ms for transmission btstack_run_loop_add_timer(&connection->controller_response_cmd_timer); }