Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BLE_API by
Revision 349:d5ad8959683f, committed 2015-05-08
- Comitter:
- rgrover1
- Date:
- Fri May 08 15:35:45 2015 +0100
- Parent:
- 348:20be4234c6fe
- Child:
- 350:b8b2b3973c47
- Commit message:
- Synchronized with git rev 6cdb7753
Author: Rohit Grover
add some error codes to ble_error_t
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:45 2015 +0100
+++ b/common/blecommon.h Fri May 08 15:35:45 2015 +0100
@@ -122,6 +122,9 @@
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_t;
#ifdef __cplusplus
