From 6e85b53f92a4e9292601b04475cfd081f1865221 Mon Sep 17 00:00:00 2001 From: Rohit Grover Date: Mon, 1 Dec 2014 08:19:53 +0000 Subject: [PATCH] Uri Data must be between 0 and 18 bytes https://github.com/mbedmicro/BLE_API/issues/6 --- services/URIBeacon2Service.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/URIBeacon2Service.h b/services/URIBeacon2Service.h index bf5926b..074009f 100644 --- a/services/URIBeacon2Service.h +++ b/services/URIBeacon2Service.h @@ -342,7 +342,7 @@ private: } private: - static const size_t MAX_SIZEOF_SERVICE_DATA_PAYLOAD = 27; + static const size_t MAX_SIZEOF_SERVICE_DATA_PAYLOAD = 18; /* Uri Data must be between 0 and 18 bytes in length. */ static const size_t MAX_SIZE_URI_DATA_CHAR_VALUE = 48; private: