From c573ae33276d24e545c83c8407e5de7219915f87 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Tue, 18 Jul 2017 11:42:58 +0200 Subject: [PATCH] freertos: fix typo in btstack_uart_block_freertos.c --- platform/freertos/btstack_uart_block_freertos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/freertos/btstack_uart_block_freertos.c b/platform/freertos/btstack_uart_block_freertos.c index 981510354..9a5239d5b 100644 --- a/platform/freertos/btstack_uart_block_freertos.c +++ b/platform/freertos/btstack_uart_block_freertos.c @@ -53,7 +53,7 @@ // hack to avoid error for ESP32 #ifndef ESP_PLATFORM -#if (INCLUDE_xEventGroupSetBitFromISR != 1) && !defined(HAVE_FREERTOS_TASK_NOTIFICATION) +#if (INCLUDE_xEventGroupSetBitFromISR != 1) && !defined(HAVE_FREERTOS_TASK_NOTIFICATIONS) #error "The BTstack HAL UART Run Loop integration (btstack_uart_block_freertos) needs to trigger Run Loop iterations from ISR context," \ "but 'INCLUDE_xEventGroupSetBitFromISR' is not enabled in your FreeRTOS configuration. Please enable INCLUDE_xEventGroupSetBitFromISR." #endif