BLE_API_Tiny_BLE

Dependents:   CSSE4011_BLE_IMU

Fork of BLE_API by Bluetooth Low Energy

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Fri May 08 15:35:46 2015 +0100
Parent:
350:64b656246a72
Child:
352:79d7cb60ae27
Commit message:
Synchronized with git rev 1f001b7f
Author: Rohit Grover
add error code BLE_ERROR_INVALID_PARAM

Changed in this revision

common/blecommon.h Show annotated file Show diff for this revision Revisions of this file
--- a/common/blecommon.h	Fri May 08 15:35:46 2015 +0100
+++ b/common/blecommon.h	Fri May 08 15:35:46 2015 +0100
@@ -121,10 +121,11 @@
     BLE_ERROR_BUFFER_OVERFLOW    = 1,       /**< The requested action would cause a buffer overflow and has been aborted */
     BLE_ERROR_NOT_IMPLEMENTED    = 2,       /**< Requested a feature that isn't yet implement or isn't supported by the target HW */
     BLE_ERROR_PARAM_OUT_OF_RANGE = 3,       /**< One of the supplied parameters is outside the valid range */
-    BLE_STACK_BUSY               = 4,       /**< The stack is busy */
-    BLE_ERROR_INVALID_STATE      = 5,       /**< Invalid state. */
-    BLE_ERROR_NO_MEM             = 6,       /**< Out of Memory */
-    BLE_ERROR_UNSPECIFIED        = 7,       /**< Unknown error. */
+    BLE_ERROR_INVALID_PARAM      = 4,       /**< One of the supplied parameters is invalid */
+    BLE_STACK_BUSY               = 5,       /**< The stack is busy */
+    BLE_ERROR_INVALID_STATE      = 6,       /**< Invalid state. */
+    BLE_ERROR_NO_MEM             = 7,       /**< Out of Memory */
+    BLE_ERROR_UNSPECIFIED        = 8,       /**< Unknown error. */
 } ble_error_t;
 
 #ifdef __cplusplus