-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathble_status.h
122 lines (94 loc) · 4.19 KB
/
ble_status.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/******************** (C) COPYRIGHT 2012 STMicroelectronics ********************
* File Name : ble_status.h
* Author : AMS - HEA&RF BU
* Version : V1.0.0
* Date : 19-July-2012
* Description : Header file with BLE Stack status codes.
********************************************************************************
* THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
#ifndef __BLE_STATUS_H__
#define __BLE_STATUS_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <hal_types.h>
/** @defgroup ble_status Bluetooth Status/Error Codes
* @{
*/
typedef uint8_t tBleStatus;
/* Error Codes as specified by the specification
* according to the spec the error codes range
* from 0x00 to 0x3F
*/
#define ERR_CMD_SUCCESS (0x00)
#define BLE_STATUS_SUCCESS (0x00)
#define ERR_UNKNOWN_HCI_COMMAND (0x01)
#define ERR_UNKNOWN_CONN_IDENTIFIER (0x02)
#define ERR_AUTH_FAILURE (0x05)
#define ERR_PIN_OR_KEY_MISSING (0x06)
#define ERR_MEM_CAPACITY_EXCEEDED (0x07)
#define ERR_CONNECTION_TIMEOUT (0x08)
#define ERR_COMMAND_DISALLOWED (0x0C)
#define ERR_UNSUPPORTED_FEATURE (0x11)
#define ERR_INVALID_HCI_CMD_PARAMS (0x12)
#define ERR_RMT_USR_TERM_CONN (0x13)
#define ERR_RMT_DEV_TERM_CONN_LOW_RESRCES (0x14)
#define ERR_RMT_DEV_TERM_CONN_POWER_OFF (0x15)
#define ERR_LOCAL_HOST_TERM_CONN (0x16)
#define ERR_UNSUPP_RMT_FEATURE (0x1A)
#define ERR_INVALID_LMP_PARAM (0x1E)
#define ERR_UNSPECIFIED_ERROR (0x1F)
#define ERR_LL_RESP_TIMEOUT (0x22)
#define ERR_LMP_PDU_NOT_ALLOWED (0x24)
#define ERR_INSTANT_PASSED (0x28)
#define ERR_PAIR_UNIT_KEY_NOT_SUPP (0x29)
#define ERR_CONTROLLER_BUSY (0x3A)
#define ERR_DIRECTED_ADV_TIMEOUT (0x3C)
#define ERR_CONN_END_WITH_MIC_FAILURE (0x3D)
#define ERR_CONN_FAILED_TO_ESTABLISH (0x3E)
#define BLE_STATUS_FAILED (0x41)
#define BLE_STATUS_INVALID_PARAMS (0x42)
#define BLE_STATUS_BUSY (0x43)
#define BLE_STATUS_INVALID_LEN_PDU (0x44)
#define BLE_STATUS_PENDING (0x45)
#define BLE_STATUS_NOT_ALLOWED (0x46)
#define BLE_STATUS_ERROR (0x47)
#define BLE_STATUS_ADDR_NOT_RESOLVED (0x48)
#define FLASH_READ_FAILED (0x49)
#define FLASH_WRITE_FAILED (0x4A)
#define FLASH_ERASE_FAILED (0x4B)
#define BLE_STATUS_INVALID_CID (0x50)
#define TIMER_NOT_VALID_LAYER (0x54)
#define TIMER_INSUFFICIENT_RESOURCES (0x55)
#define BLE_STATUS_CSRK_NOT_FOUND (0x5A)
#define BLE_STATUS_IRK_NOT_FOUND (0x5B)
#define BLE_STATUS_DEV_NOT_FOUND_IN_DB (0x5C)
#define BLE_STATUS_SEC_DB_FULL (0x5D)
#define BLE_STATUS_DEV_NOT_BONDED (0x5E)
#define BLE_STATUS_DEV_IN_BLACKLIST (0x5F)
#define BLE_STATUS_INVALID_HANDLE (0x60)
#define BLE_STATUS_INVALID_PARAMETER (0x61)
#define BLE_STATUS_OUT_OF_HANDLE (0x62)
#define BLE_STATUS_INVALID_OPERATION (0x63)
#define BLE_STATUS_INSUFFICIENT_RESOURCES (0x64)
#define BLE_INSUFFICIENT_ENC_KEYSIZE (0x65)
#define BLE_STATUS_CHARAC_ALREADY_EXISTS (0x66)
/*
* Library Error Codes
*/
#define BLE_STATUS_TIMEOUT (0xFF)
#define BLE_STATUS_PROFILE_ALREADY_INITIALIZED (0xF0)
#define BLE_STATUS_NULL_PARAM (0xF1)
/**
* @}
*/
#ifdef __cplusplus
}
#endif
#endif /* __BLE_STATUS_H__ */