Compatible with Keewi v1

Fork of BLE_API by Bluetooth Low Energy

Files at this revision

API Documentation at this revision

Comitter:
Rohit Grover
Date:
Thu Jul 24 15:35:04 2014 +0100
Parent:
107:a20be740075d
Child:
109:c85ab5f1eca0
Commit message:
adding another error instance to blecommon.h

Changed in this revision

common/blecommon.h Show annotated file Show diff for this revision Revisions of this file
--- a/common/blecommon.h	Wed Jul 23 15:09:23 2014 +0100
+++ b/common/blecommon.h	Thu Jul 24 15:35:04 2014 +0100
@@ -36,15 +36,10 @@
 typedef enum ble_error_e
 {
     BLE_ERROR_NONE               = 0,       /**< No error */
-    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_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_t;
 
 #ifdef __cplusplus