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 Jun 19 15:52:58 2015 +0100
Parent:
646:1c59b84fd7e6
Child:
648:9878c9864650
Commit message:
Synchronized with git rev ee29ce32
Author: Rohit Grover
minor sanity check for DiscoveredCharacteristic::writeWoResponse()

Changed in this revision

common/DiscoveredCharacteristic.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/common/DiscoveredCharacteristic.cpp	Fri Jun 19 15:52:58 2015 +0100
+++ b/common/DiscoveredCharacteristic.cpp	Fri Jun 19 15:52:58 2015 +0100
@@ -40,5 +40,9 @@
         return BLE_ERROR_OPERATION_NOT_PERMITTED;
     }
 
+    if (!gattc) {
+        return BLE_ERROR_INVALID_STATE;
+    }
+
     return gattc->write(GattClient::OP_WRITE_CMD, connHandle, length, value);
 }
\ No newline at end of file