High level Bluetooth Low Energy API and radio abstraction layer

Dependencies:   nRF51822

Dependents:   LinkNode_LIS3DH

Fork of BLE_API by Bluetooth Low Energy

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Fri Nov 28 14:11:23 2014 +0000
Parent:
181:bbb6ce1082c3
Child:
183:41d6ffadba96
Commit message:
Synchronized with git rev 576c2fa6
Author: Rohit Grover
add failed to accommodate.

Changed in this revision

services/URIBeacon2Service.h Show annotated file Show diff for this revision Revisions of this file
--- a/services/URIBeacon2Service.h	Fri Nov 28 14:11:23 2014 +0000
+++ b/services/URIBeacon2Service.h	Fri Nov 28 14:11:23 2014 +0000
@@ -64,7 +64,11 @@
         }
 
         static URIBeacon2Service service(ble_, urldata, flagsIn, effectiveTxPowerIn, beaconPeriodIn);
-        return &service;
+        if (!service.failedToAccomodate) {
+            return &service;
+        }
+
+        return NULL; /* Oops. Failed to accommodate uridata within the advertising payload. */
     }
 
     /**
@@ -113,6 +117,7 @@
         ble(ble_),
         payloadIndex(0),
         serviceDataPayload(),
+        failedToAccomodate(false),
         lockedState(false),
         uriDataLength(strlen(urldata)),
         uriDataValue(),
@@ -300,6 +305,9 @@
                 --sizeofURLData;
             }
         }
+        if ((payloadIndex == MAX_SIZEOF_SERVICE_DATA_PAYLOAD) && (sizeofURLData != 0)) {
+            failedToAccomodate = true;
+        }
 
         return encodedBytes;
     }
@@ -313,6 +321,8 @@
 
     size_t   payloadIndex;
     uint8_t  serviceDataPayload[MAX_SIZEOF_SERVICE_DATA_PAYLOAD];
+    bool     failedToAccomodate;
+
     bool     lockedState;
     uint16_t uriDataLength;
     uint8_t  uriDataValue[MAX_SIZE_URI_DATA_CHAR_VALUE];