From 94d9af0cbe43b1547f6b6b7cef6830de5ac9dafc Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Fri, 13 Apr 2018 17:04:59 +0200 Subject: [PATCH] ble: fix warning if ENABLE_BLE is not defined but BLE is used --- src/ble/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ble/core.h b/src/ble/core.h index 65e8c9ba1..6734008ce 100644 --- a/src/ble/core.h +++ b/src/ble/core.h @@ -45,7 +45,7 @@ #include "btstack_config.h" #ifndef ENABLE_BLE -#error "ENABLE_BLE not defined but Classic protocol or profile include. Please add ENABLE_BLE in btstack_config.h, or remove all Classic protocols and profiles" +#error "ENABLE_BLE not defined but BLE protocol or profile include. Please add ENABLE_BLE in btstack_config.h, or remove all BLE protocols and profiles" #endif #endif