From 5d616801938d066f52e2fcb925cedcfef87d3b4e Mon Sep 17 00:00:00 2001 From: luisan00 Date: Mon, 17 Dec 2018 11:48:40 +0100 Subject: [PATCH] Fix error: 'BLEAddress' does not name a type When: compiling a project. Where: Line 54 in: BLEAddress getRemoteAddress(); Drops error: 'BLEAddress' does not name a type My Solution: Add the include: #include "BLEAddress.h" --- cpp_utils/BLERemoteCharacteristic.h | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp_utils/BLERemoteCharacteristic.h b/cpp_utils/BLERemoteCharacteristic.h index 47517fff..b8764f65 100644 --- a/cpp_utils/BLERemoteCharacteristic.h +++ b/cpp_utils/BLERemoteCharacteristic.h @@ -17,6 +17,7 @@ #include "BLERemoteService.h" #include "BLERemoteDescriptor.h" #include "BLEUUID.h" +#include "BLEAddress.h" #include "FreeRTOS.h" class BLERemoteService;