-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbluenrg_gatt_server.h
229 lines (204 loc) · 6.32 KB
/
bluenrg_gatt_server.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/******************** (C) COPYRIGHT 2012 STMicroelectronics ********************
* File Name : bluenrg_gatt_server.h
* Author : AMS - HEA&RF BU
* Version : V1.0.0
* Date : 19-July-2012
* Description : Header file for BlueNRG's GATT server layer.
********************************************************************************
* 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 __GATT_SERVER_H__
#define __GATT_SERVER_H__
#ifdef __cplusplus
extern "C" {
#endif
#include <compiler.h>
#include <ble_status.h>
/**
*@addtogroup GATT GATT
*@{
*/
/**
* @anchor Well-Known_UUIDs
* @name Well-Known UUIDs
* @{
*/
#define PRIMARY_SERVICE_UUID (0x2800)
#define SECONDARY_SERVICE_UUID (0x2801)
#define INCLUDE_SERVICE_UUID (0x2802)
#define CHARACTERISTIC_UUID (0x2803)
#define CHAR_EXTENDED_PROP_DESC_UUID (0x2900)
#define CHAR_USER_DESC_UUID (0x2901)
#define CHAR_CLIENT_CONFIG_DESC_UUID (0x2902)
#define CHAR_SERVER_CONFIG_DESC_UUID (0x2903)
#define CHAR_FORMAT_DESC_UUID (0x2904)
#define CHAR_AGGR_FMT_DESC_UUID (0x2905)
#define GATT_SERVICE_UUID (0x1801)
#define GAP_SERVICE_UUID (0x1800)
#define SERVICE_CHANGED_UUID (0x2A05)
/**
* @}
*/
/**
* @anchor Access_permissions
* @name Access permissions
* Access permissions for an attribute
* @{
*/
#define ATTR_NO_ACCESS (0x00)
#define ATTR_ACCESS_READ_ONLY (0x01)
#define ATTR_ACCESS_WRITE_REQ_ONLY (0x02)
#define ATTR_ACCESS_READ_WRITE (0x03)
#define ATTR_ACCESS_WRITE_WITHOUT_RESPONSE (0x04)
#define ATTR_ACCESS_SIGNED_WRITE_ALLOWED (0x08)
/**
* Allows all write procedures
*/
#define ATTR_ACCESS_WRITE_ANY (0x0E)
/**
* @}
*/
/**
* @anchor Char_properties
* @name Characteristic properties.
* @{
*/
#define CHAR_PROP_BROADCAST (0x01)
#define CHAR_PROP_READ (0x02)
#define CHAR_PROP_WRITE_WITHOUT_RESP (0x04)
#define CHAR_PROP_WRITE (0x08)
#define CHAR_PROP_NOTIFY (0x10)
#define CHAR_PROP_INDICATE (0x20)
#define CHAR_PROP_SIGNED_WRITE (0x40)
#define CHAR_PROP_EXT (0x80)
/**
* @}
*/
/**
* @anchor Security_permissions
* @name Security permissions for an attribute.
* @{
*/
#define ATTR_PERMISSION_NONE (0x00) /**< No security. */
#define ATTR_PERMISSION_AUTHEN_READ (0x01) /**< Need authentication to read */
#define ATTR_PERMISSION_AUTHOR_READ (0x02) /**< Need authorization to read */
#define ATTR_PERMISSION_ENCRY_READ (0x04) /**< Link must be encrypted to read */
#define ATTR_PERMISSION_AUTHEN_WRITE (0x08) /**< Need authentication to write */
#define ATTR_PERMISSION_AUTHOR_WRITE (0x10) /**< Need authorization to write */
#define ATTR_PERMISSION_ENCRY_WRITE (0x20) /**< Link must be encrypted for write */
/**
* @}
*/
/**
* @anchor UUID_Types
* @name Type of UUID (16 bit or 128 bit).
* @{
*/
#define UUID_TYPE_16 (0x01)
#define UUID_TYPE_128 (0x02)
/**
* @}
*/
/**
* @anchor Service_type
* @name Type of service (primary or secondary)
* @{
*/
#define PRIMARY_SERVICE (0x01)
#define SECONDARY_SERVICE (0x02)
/**
* @}
*/
/**
* @anchor Gatt_Event_Mask
* @name Gatt Event Mask
* Type of event generated by GATT server
* @{
*/
#define GATT_DONT_NOTIFY_EVENTS (0x00) /**< Do not notify events. */
#define GATT_NOTIFY_ATTRIBUTE_WRITE (0x01) /**< The application will be notified when a client writes to this attribute.
An @ref EVT_BLUE_GATT_ATTRIBUTE_MODIFIED will be issued. */
#define GATT_NOTIFY_WRITE_REQ_AND_WAIT_FOR_APPL_RESP (0x02) /**< The application will be notified when a write request, a write cmd
or a signed write cmd are received by the server for this attribute.
An @ref EVT_BLUE_GATT_WRITE_PERMIT_REQ will be issued. */
#define GATT_NOTIFY_READ_REQ_AND_WAIT_FOR_APPL_RESP (0x04) /**< The application will be notified when a read request of any type is
received for this attribute. An @ref EVT_BLUE_GATT_READ_PERMIT_REQ will be issued. */
/**
* @}
*/
/**
* @name Type of characteristic length
* See aci_gatt_add_char()
* @{
*/
#define CHAR_VALUE_LEN_CONSTANT (0x00)
#define CHAR_VALUE_LEN_VARIABLE (0x01)
/**
* @}
*/
/**
* @name Encryption key size
* @{
*/
/**
* Minimum encryption key size
*/
#define MIN_ENCRY_KEY_SIZE (7)
/**
* Maximum encryption key size
*/
#define MAX_ENCRY_KEY_SIZE (0x10)
/**
* @}
*/
/**
* @name Characteristic Presentation Format
* @{
*/
typedef __packed struct _charactFormat {
uint8_t format;
int8_t exp;
uint16_t unit;
uint8_t name_space;
uint16_t desc;
} PACKED charactFormat;
/**
* @}
*/
/**
* @name Format
* @{
*/
#define FORMAT_UINT8 0x04
#define FORMAT_UINT16 0x06
#define FORMAT_SINT16 0x0E
#define FORMAT_SINT24 0x0F
/**
* @}
*/
/**
* @name Unit
* @{
*/
#define UNIT_UNITLESS 0x2700
#define UNIT_TEMP_CELSIUS 0x272F
#define UNIT_PRESSURE_BAR 0x2780
/**
* @}
*/
/**
* ATT MTU size
*/
#define ATT_MTU (23)
/**
* @}
*/
#ifdef __cplusplus
}
#endif
#endif /* __GATT_SERVER_H__ */