-
Notifications
You must be signed in to change notification settings - Fork 1
/
ble_tes_c.c
executable file
·378 lines (321 loc) · 13.9 KB
/
ble_tes_c.c
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
/**
* Copyright (c) 2012 - 2018, Nordic Semiconductor ASA
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form, except as embedded into a Nordic
* Semiconductor ASA integrated circuit in a product or a software update for
* such product, must reproduce the above copyright notice, this list of
* conditions and the following disclaimer in the documentation and/or other
* materials provided with the distribution.
*
* 3. Neither the name of Nordic Semiconductor ASA nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* 4. This software, with or without modification, must only be used with a
* Nordic Semiconductor ASA integrated circuit.
*
* 5. Any software provided in binary form under this license must not be reverse
* engineered, decompiled, modified and/or disassembled.
*
* THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#include "sdk_common.h"
#if NRF_MODULE_ENABLED(BLE_TES_C)
#include "ble_tes_c.h"
#include "ble_db_discovery.h"
#include "ble_types.h"
#include "ble_srv_common.h"
#include "ble_gattc.h"
#define NRF_LOG_MODULE_NAME ble_tes_c
#include "nrf_log.h"
NRF_LOG_MODULE_REGISTER();
#define TX_BUFFER_MASK 0x07 /**< TX Buffer mask, must be a mask of continuous zeroes, followed by continuous sequence of ones: 000...111. */
#define TX_BUFFER_SIZE (TX_BUFFER_MASK + 1) /**< Size of send buffer, which is 1 higher than the mask. */
#define WRITE_MESSAGE_LENGTH BLE_CCCD_VALUE_LEN /**< Length of the write message for CCCD. */
#define WRITE_MESSAGE_LENGTH BLE_CCCD_VALUE_LEN /**< Length of the write message for CCCD. */
typedef enum
{
READ_REQ, /**< Type identifying that this tx_message is a read request. */
WRITE_REQ /**< Type identifying that this tx_message is a write request. */
} tx_request_t;
/**@brief Structure for writing a message to the peer, i.e. CCCD.
*/
typedef struct
{
uint8_t gattc_value[WRITE_MESSAGE_LENGTH]; /**< The message to write. */
ble_gattc_write_params_t gattc_params; /**< GATTC parameters for this message. */
} write_params_t;
/**@brief Structure for holding data to be transmitted to the connected central.
*/
typedef struct
{
uint16_t conn_handle; /**< Connection handle to be used when transmitting this message. */
tx_request_t type; /**< Type of this message, i.e. read or write message. */
union
{
uint16_t read_handle; /**< Read request message. */
write_params_t write_req; /**< Write request message. */
} req;
} tx_message_t;
static tx_message_t m_tx_buffer[TX_BUFFER_SIZE]; /**< Transmit buffer for messages to be transmitted to the central. */
static uint32_t m_tx_insert_index = 0; /**< Current index in the transmit buffer where the next message should be inserted. */
static uint32_t m_tx_index = 0; /**< Current index in the transmit buffer from where the next message to be transmitted resides. */
/**@brief Function for passing any pending request from the buffer to the stack.
*/
static void tx_buffer_process(void)
{
if (m_tx_index != m_tx_insert_index)
{
uint32_t err_code;
if (m_tx_buffer[m_tx_index].type == READ_REQ)
{
err_code = sd_ble_gattc_read(m_tx_buffer[m_tx_index].conn_handle,
m_tx_buffer[m_tx_index].req.read_handle,
0);
}
else
{
err_code = sd_ble_gattc_write(m_tx_buffer[m_tx_index].conn_handle,
&m_tx_buffer[m_tx_index].req.write_req.gattc_params);
}
if (err_code == NRF_SUCCESS)
{
NRF_LOG_DEBUG("SD Read/Write API returns Success..");
m_tx_index++;
m_tx_index &= TX_BUFFER_MASK;
}
else
{
NRF_LOG_DEBUG("SD Read/Write API returns error. This message sending will be "
"attempted again..");
}
}
}
/**@brief Function for handling write response events.
*
* @param[in] p_ble_tes_c Pointer to the Thingy Enviroment Client structure.
* @param[in] p_ble_evt Pointer to the BLE event received.
*/
static void on_write_rsp(ble_tes_c_t * p_ble_tes_c, ble_evt_t const * p_ble_evt)
{
// Check if the event if on the link for this instance
if (p_ble_tes_c->conn_handle != p_ble_evt->evt.gattc_evt.conn_handle)
{
return;
}
// Check if there is any message to be sent across to the peer and send it.
tx_buffer_process();
}
/**@brief Function for handling Handle Value Notification received from the SoftDevice.
*
* @details This function will uses the Handle Value Notification received from the SoftDevice
* and checks if it is a notification of Button state from the peer. If
* it is, this function will decode the state of the button and send it to the
* application.
*
* @param[in] p_ble_tes_c Pointer to the Thingy Enviroment Client structure.
* @param[in] p_ble_evt Pointer to the BLE event received.
*/
static void on_hvx(ble_tes_c_t * p_ble_tes_c, ble_evt_t const * p_ble_evt)
{
// Check if the event is on the link for this instance
//NRF_LOG_INFO("Handel notification event");
if (p_ble_tes_c->conn_handle != p_ble_evt->evt.gattc_evt.conn_handle)
{
return;
}
ble_tes_c_evt_t ble_tes_c_evt;
ble_tes_c_evt.conn_handle = p_ble_tes_c->conn_handle;
// Check if this is a RAW motion data notification.
if (p_ble_evt->evt.gattc_evt.params.hvx.handle == p_ble_tes_c->peer_tes_db.raw_handle){
ble_tes_c_evt.evt_type = BLE_TES_C_EVT_RAW_NOTIFICATION;
ble_tes_c_evt.params.value.accelerometer = *(ble_tes_raw_t *) p_ble_evt->evt.gattc_evt.params.hvx.data;
//NRF_LOG_INFO("Acc data isw %x",p_ble_evt->evt.gattc_evt.params.hvx.data);
}
else return;
p_ble_tes_c->evt_handler(p_ble_tes_c, &ble_tes_c_evt);
}
/**@brief Function for handling Disconnected event received from the SoftDevice.
*
* @details This function check if the disconnect event is happening on the link
* associated with the current instance of the module, if so it will set its
* conn_handle to invalid.
*
* @param[in] p_ble_tes_c Pointer to the Thingy Enviroment Client structure.
* @param[in] p_ble_evt Pointer to the BLE event received.
*/
static void on_disconnected(ble_tes_c_t * p_ble_tes_c, ble_evt_t const * p_ble_evt)
{
if (p_ble_tes_c->conn_handle == p_ble_evt->evt.gap_evt.conn_handle)
{
p_ble_tes_c->conn_handle = BLE_CONN_HANDLE_INVALID;
p_ble_tes_c->peer_tes_db.raw_cccd_handle = BLE_GATT_HANDLE_INVALID;
p_ble_tes_c->peer_tes_db.raw_handle = BLE_GATT_HANDLE_INVALID;
}
}
/**@brief Function for handling Discovered Events.
*
* @details This function check if the event discovery is complete and UUID matches
the UUID of the service that is of intrest. It will retrive a specific
feature of the service by using its UUID.
*
*/
void ble_tes_on_db_disc_evt(ble_tes_c_t * p_ble_tes_c, ble_db_discovery_evt_t const * p_evt)
{
// Check if motion service is accessable
NRF_LOG_INFO("\nInside event discovery");
if (p_evt->evt_type == BLE_DB_DISCOVERY_COMPLETE &&
p_evt->params.discovered_db.srv_uuid.uuid == BLE_UUID_MOT_SERVICE &&
p_evt->params.discovered_db.srv_uuid.type == p_ble_tes_c->uuid_type)
{
ble_tes_c_evt_t evt;
evt.evt_type = BLE_TES_C_EVT_DISCOVERY_COMPLETE;
evt.conn_handle = p_evt->conn_handle;
NRF_LOG_INFO("\n Motion Event detected -------________*******************");
for (uint32_t i = 0; i < 8; i++)
{
const ble_gatt_db_char_t * p_char = &(p_evt->params.discovered_db.charateristics[i]);
switch (p_char->characteristic.uuid.uuid)
{
case THINGY_TES_UUID_RAW_CHAR:
evt.params.peer_db.raw_cccd_handle = p_char->cccd_handle;
evt.params.peer_db.raw_handle = p_char->characteristic.handle_value;
NRF_LOG_INFO("406 evt raw data handle = %d", evt.params.peer_db.raw_handle);
break;
default:
break;
}
}
NRF_LOG_DEBUG("Thingy Motion Service discovered at peer.");
//If the instance has been assigned prior to db_discovery, assign the db_handles
if (p_ble_tes_c->conn_handle != BLE_CONN_HANDLE_INVALID)
{
if ((p_ble_tes_c->conn_handle == BLE_CONN_HANDLE_INVALID)&&
(p_ble_tes_c->peer_tes_db.raw_cccd_handle == BLE_GATT_HANDLE_INVALID)&&
(p_ble_tes_c->peer_tes_db.raw_handle == BLE_GATT_HANDLE_INVALID))
{
p_ble_tes_c->peer_tes_db = evt.params.peer_db;
}
}
p_ble_tes_c->evt_handler(p_ble_tes_c, &evt);
}
}
/**@brief Function to init BLE.
*
*/
uint32_t ble_tes_c_init(ble_tes_c_t * p_ble_tes_c, ble_tes_c_init_t * p_ble_tes_c_init){
uint32_t err_code;
ble_uuid_t tes_uuid;
ble_uuid128_t tes_base_uuid = {TES_BASE_UUID};
VERIFY_PARAM_NOT_NULL(p_ble_tes_c);
VERIFY_PARAM_NOT_NULL(p_ble_tes_c_init);
VERIFY_PARAM_NOT_NULL(p_ble_tes_c_init->evt_handler);
p_ble_tes_c->peer_tes_db.raw_cccd_handle = BLE_GATT_HANDLE_INVALID;
p_ble_tes_c->peer_tes_db.raw_handle = BLE_GATT_HANDLE_INVALID;
p_ble_tes_c->conn_handle = BLE_CONN_HANDLE_INVALID;
p_ble_tes_c->evt_handler = p_ble_tes_c_init->evt_handler;
err_code = sd_ble_uuid_vs_add(&tes_base_uuid, &p_ble_tes_c->uuid_type);
if (err_code != NRF_SUCCESS)
{
return err_code;
}
VERIFY_SUCCESS(err_code);
tes_uuid.type = p_ble_tes_c->uuid_type;
tes_uuid.uuid = THINGY_TES_UUID_SERVICE;
return ble_db_discovery_evt_register(&tes_uuid);
}
void ble_tes_c_on_ble_evt(ble_evt_t const * p_ble_evt, void * p_context)
{
if ((p_context == NULL) || (p_ble_evt == NULL))
{
return;
}
ble_tes_c_t * p_ble_tes_c = (ble_tes_c_t *)p_context;
switch (p_ble_evt->header.evt_id)
{
case BLE_GATTC_EVT_HVX:
on_hvx(p_ble_tes_c, p_ble_evt);
break;
case BLE_GATTC_EVT_WRITE_RSP:
on_write_rsp(p_ble_tes_c, p_ble_evt);
break;
case BLE_GAP_EVT_DISCONNECTED:
on_disconnected(p_ble_tes_c, p_ble_evt);
break;
default:
break;
}
}
/**@brief Function for configuring the CCCD.
*
* @param[in] conn_handle The connection handle on which to configure the CCCD.
* @param[in] handle_cccd The handle of the CCCD to be configured.
* @param[in] enable Whether to enable or disable the CCCD.
*
* @return NRF_SUCCESS if the CCCD configure was successfully sent to the peer.
*/
static uint32_t cccd_configure_tes(uint16_t conn_handle, uint16_t handle_cccd, bool enable)
{
NRF_LOG_DEBUG("Configuring CCCD. CCCD Handle = %d, Connection Handle = %d",
handle_cccd,conn_handle);
tx_message_t * p_msg;
uint16_t cccd_val = enable ? BLE_GATT_HVX_NOTIFICATION : 0;
p_msg = &m_tx_buffer[m_tx_insert_index++];
m_tx_insert_index &= TX_BUFFER_MASK;
p_msg->req.write_req.gattc_params.handle = handle_cccd;
p_msg->req.write_req.gattc_params.len = WRITE_MESSAGE_LENGTH;
p_msg->req.write_req.gattc_params.p_value = p_msg->req.write_req.gattc_value;
p_msg->req.write_req.gattc_params.offset = 0;
p_msg->req.write_req.gattc_params.write_op = BLE_GATT_OP_WRITE_REQ;
p_msg->req.write_req.gattc_value[0] = LSB_16(cccd_val);
p_msg->req.write_req.gattc_value[1] = MSB_16(cccd_val);
p_msg->conn_handle = conn_handle;
p_msg->type = WRITE_REQ;
tx_buffer_process();
return NRF_SUCCESS;
}
/**@brief Function to enable notification for RAW motion data.
* makes a call to cccd_confgiure function.
*/
uint32_t ble_tes_c_raw_notif_enable(ble_tes_c_t * p_ble_tes_c)
{
VERIFY_PARAM_NOT_NULL(p_ble_tes_c);
if (p_ble_tes_c->conn_handle == BLE_CONN_HANDLE_INVALID)
{
return NRF_ERROR_INVALID_STATE;
}
return cccd_configure_tes(p_ble_tes_c->conn_handle,
p_ble_tes_c->peer_tes_db.raw_cccd_handle,
true);
}
uint32_t ble_tes_c_handles_assign(ble_tes_c_t * p_ble_tes_c,
uint16_t conn_handle,
const tes_db_t * p_peer_handles)
{
VERIFY_PARAM_NOT_NULL(p_ble_tes_c);
p_ble_tes_c->conn_handle = conn_handle;
if (p_peer_handles != NULL)
{
p_ble_tes_c->peer_tes_db = *p_peer_handles;
}
return NRF_SUCCESS;
}
#endif // NRF_MODULE_ENABLED(BLE_TES_C)