Skip to content

Commit 65a3363

Browse files
author
Rohit Grover
committed
adding another error instance to blecommon.h
1 parent 9c8f69c commit 65a3363

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

common/blecommon.h

+4-9
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,10 @@ extern "C" {
3636
typedef enum ble_error_e
3737
{
3838
BLE_ERROR_NONE = 0, /**< No error */
39-
BLE_ERROR_BUFFER_OVERFLOW = 1, /**< The requested action would
40-
*cause a buffer overflow and has
41-
*been aborted */
42-
BLE_ERROR_NOT_IMPLEMENTED = 2, /**< Requested a feature that
43-
*isn't yet implement or isn't
44-
*supported by the target HW */
45-
BLE_ERROR_PARAM_OUT_OF_RANGE = 3 /**< One of the supplied
46-
*parameters is outside the valid
47-
*range */
39+
BLE_ERROR_BUFFER_OVERFLOW = 1, /**< The requested action would cause a buffer overflow and has been aborted */
40+
BLE_ERROR_NOT_IMPLEMENTED = 2, /**< Requested a feature that isn't yet implement or isn't supported by the target HW */
41+
BLE_ERROR_PARAM_OUT_OF_RANGE = 3, /**< One of the supplied parameters is outside the valid range */
42+
BLE_STACK_BUSY = 4, /**< The stack is busy */
4843
} ble_error_t;
4944

5045
#ifdef __cplusplus

0 commit comments

Comments
 (0)