From 1544bae6a2482c60cd0bf4b783d55b1c78b3e209 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 20 Jan 2022 10:37:27 +0100 Subject: [PATCH] btstack_run_loop_freertos: fix deprecated btstack_run_loop_freertos_trigger_from_isr --- platform/freertos/btstack_run_loop_freertos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/freertos/btstack_run_loop_freertos.c b/platform/freertos/btstack_run_loop_freertos.c index 2fcb25df6..9e5908c2a 100644 --- a/platform/freertos/btstack_run_loop_freertos.c +++ b/platform/freertos/btstack_run_loop_freertos.c @@ -296,6 +296,6 @@ void btstack_run_loop_freertos_trigger_exit(void){ #if defined(HAVE_FREERTOS_TASK_NOTIFICATIONS) || (INCLUDE_xEventGroupSetBitFromISR == 1) void btstack_run_loop_freertos_trigger_from_isr(void){ - btstack_run_loop_freertos_trigger_from_isr(); + btstack_run_loop_freertos_poll_data_sources_from_irq(); } #endif