-
Notifications
You must be signed in to change notification settings - Fork 517
/
Copy pathBLEConnection.cpp
461 lines (371 loc) · 12.9 KB
/
BLEConnection.cpp
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
/**************************************************************************/
/*!
@file BLEConnection.cpp
@author hathach (tinyusb.org)
@section LICENSE
Software License Agreement (BSD License)
Copyright (c) 2019, Adafruit Industries (adafruit.com)
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 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 the copyright holders nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER 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 "bluefruit.h"
//--------------------------------------------------------------------+
// MACRO TYPEDEF CONSTANT ENUM DECLARATION
//--------------------------------------------------------------------+
BLEConnection::BLEConnection(uint16_t conn_hdl, ble_gap_evt_connected_t const* evt_connected, uint8_t hvn_qsize, uint8_t wrcmd_qsize)
{
_conn_hdl = conn_hdl;
_connected = true;
_mtu = BLE_GATT_ATT_MTU_DEFAULT;
_data_length = BLE_GATT_ATT_MTU_DEFAULT + 4; // 27
_phy = BLE_GAP_PHY_1MBPS;
_conn_interval = evt_connected->conn_params.max_conn_interval;
_slave_latency = evt_connected->conn_params.slave_latency;
_sup_timeout = evt_connected->conn_params.conn_sup_timeout;
_peer_addr = evt_connected->peer_addr;
_role = evt_connected->role;
_hvn_sem = xSemaphoreCreateCounting(hvn_qsize, hvn_qsize);
_wrcmd_sem = xSemaphoreCreateCounting(wrcmd_qsize, wrcmd_qsize);
_sec_mode.sm = _sec_mode.lv = 1; // default to open
_bonded = false;
_hvc_sem = NULL;
_hvc_received = false;
_ediv = 0xFFFF;
_waitForIndicateConfirmTimeout = portMAX_DELAY;
}
BLEConnection::~BLEConnection()
{
vSemaphoreDelete( _hvn_sem );
vSemaphoreDelete( _wrcmd_sem );
//------------- on-the-fly data must be freed -------------//
if (_hvc_sem ) vSemaphoreDelete(_hvc_sem );
}
uint16_t BLEConnection::handle (void)
{
return _conn_hdl;
}
bool BLEConnection::connected(void)
{
return _connected;
}
bool BLEConnection::bonded(void)
{
return _bonded;
}
bool BLEConnection::secured(void)
{
return !(_sec_mode.sm == 1 && _sec_mode.lv == 1);
}
uint8_t BLEConnection::getRole (void)
{
return _role;
}
uint16_t BLEConnection::getMtu (void)
{
return _mtu;
}
uint16_t BLEConnection::getConnectionInterval(void)
{
return _conn_interval;
}
uint16_t BLEConnection::getSlaveLatency(void)
{
return _slave_latency;
}
uint16_t BLEConnection::getSupervisionTimeout(void)
{
return _sup_timeout;
}
uint16_t BLEConnection::getDataLength(void)
{
return _data_length;
}
uint8_t BLEConnection::getPHY(void)
{
return _phy;
}
ble_gap_addr_t BLEConnection::getPeerAddr (void)
{
return _bonded ? _bond_id_addr : _peer_addr;
}
uint16_t BLEConnection::getPeerName(char* buf, uint16_t bufsize)
{
return Bluefruit.Gatt.readCharByUuid(_conn_hdl, BLEUuid(BLE_UUID_GAP_CHARACTERISTIC_DEVICE_NAME), buf, bufsize);
}
ble_gap_conn_sec_mode_t BLEConnection::getSecureMode(void)
{
return _sec_mode;
}
static inline bool is_tx_power_valid(int8_t power)
{
#if defined(NRF52832_XXAA)
int8_t const accepted[] = { -40, -20, -16, -12, -8, -4, 0, 3, 4 };
#elif defined(NRF52840_XXAA) || defined(NRF52833_XXAA)
int8_t const accepted[] = { -40, -20, -16, -12, -8, -4, 0, 2, 3, 4, 5, 6, 7, 8 };
#endif
for (uint32_t i=0; i<sizeof(accepted); i++)
{
if (accepted[i] == power) return true;
}
return false;
}
bool BLEConnection::setTxPower(int8_t power)
{
VERIFY(is_tx_power_valid(power));
VERIFY_STATUS(sd_ble_gap_tx_power_set(BLE_GAP_TX_POWER_ROLE_CONN, _conn_hdl, power), false);
return true;
}
bool BLEConnection::requestMtuExchange(uint16_t mtu)
{
VERIFY_STATUS(sd_ble_gattc_exchange_mtu_request(_conn_hdl, mtu), false);
return true;
}
bool BLEConnection::requestDataLengthUpdate(ble_gap_data_length_params_t const *p_dl_params, ble_gap_data_length_limitation_t *p_dl_limitation)
{
VERIFY_STATUS(sd_ble_gap_data_length_update(_conn_hdl, p_dl_params, p_dl_limitation), false);
return true;
}
bool BLEConnection::requestConnectionParameter(uint16_t conn_interval, uint16_t slave_latency, uint16_t sup_timeout)
{
ble_gap_conn_params_t const conn_params =
{
.min_conn_interval = conn_interval,
.max_conn_interval = conn_interval,
.slave_latency = slave_latency,
.conn_sup_timeout = sup_timeout
};
VERIFY_STATUS(sd_ble_gap_conn_param_update(_conn_hdl, &conn_params), false);
return true;
}
bool BLEConnection::requestPHY(uint8_t phy)
{
ble_gap_phys_t gap_phy = { .tx_phys = phy, .rx_phys = phy };
VERIFY_STATUS( sd_ble_gap_phy_update(_conn_hdl, &gap_phy), false);
return true;
}
bool BLEConnection::disconnect(void)
{
return ERROR_NONE == sd_ble_gap_disconnect(_conn_hdl, BLE_HCI_REMOTE_USER_TERMINATED_CONNECTION);
}
bool BLEConnection::monitorRssi(uint8_t threshold)
{
// number of samples is 3
VERIFY_STATUS(sd_ble_gap_rssi_start(_conn_hdl, threshold, 3), false);
return true;
}
int8_t BLEConnection::getRssi(void)
{
int8_t rssi;
uint8_t channel_idx;
VERIFY_STATUS(sd_ble_gap_rssi_get(_conn_hdl, &rssi, &channel_idx), 0);
(void) channel_idx;
return rssi;
}
void BLEConnection::stopRssi(void)
{
sd_ble_gap_rssi_stop(_conn_hdl);
}
bool BLEConnection::getHvnPacket (void)
{
return xSemaphoreTake(_hvn_sem, ms2tick(BLE_GENERIC_TIMEOUT));
}
bool BLEConnection::releaseHvnPacket(void)
{
return xSemaphoreGive(_hvn_sem);
}
bool BLEConnection::getWriteCmdPacket (void)
{
return xSemaphoreTake(_wrcmd_sem, ms2tick(BLE_GENERIC_TIMEOUT));
}
bool BLEConnection::saveCccd(void)
{
return bond_save_cccd(_role, _conn_hdl, &_bond_id_addr);
}
bool BLEConnection::loadCccd(void)
{
return bond_load_cccd(_role, _conn_hdl, &_bond_id_addr);
}
bool BLEConnection::saveBondKey(bond_keys_t const* ltkey)
{
bond_save_keys(_role, _conn_hdl, ltkey);
_bond_id_addr = ltkey->peer_id.id_addr_info;
_bonded = true;
return true;
}
bool BLEConnection::loadBondKey(bond_keys_t* ltkey)
{
_bonded = bond_load_keys(_role, &_peer_addr, ltkey);
VERIFY(_bonded);
_bond_id_addr = ltkey->peer_id.id_addr_info;
return true;
}
bool BLEConnection::removeBondKey(void)
{
VERIFY(_bonded);
bond_remove_key(_role, &_bond_id_addr);
return true;
}
bool BLEConnection::requestPairing(void)
{
// skip if already paired
if ( secured() ) return true;
return Bluefruit.Security._authenticate(_conn_hdl);
}
void BLEConnection::setWaitForIndicateConfirmTimeout(uint16_t timeOutMs)
{
_waitForIndicateConfirmTimeout = pdMS_TO_TICKS (timeOutMs);
}
bool BLEConnection::waitForIndicateConfirm(void)
{
// on the fly semaphore
_hvc_sem = xSemaphoreCreateBinary();
_hvc_received = false;
xSemaphoreTake(_hvc_sem, _waitForIndicateConfirmTimeout);
vSemaphoreDelete(_hvc_sem);
_hvc_sem = NULL;
return _hvc_received;
}
void BLEConnection::_eventHandler(ble_evt_t* evt)
{
switch(evt->header.evt_id)
{
case BLE_GAP_EVT_DISCONNECTED:
// mark as disconnected
_connected = false;
break;
case BLE_GAP_EVT_CONN_SEC_UPDATE:
{
const ble_gap_conn_sec_t* conn_sec = &evt->evt.gap_evt.params.conn_sec_update.conn_sec;
_sec_mode = conn_sec->sec_mode;
// Connection is secured (paired) if encryption level > 1
if ( this->secured() )
{
// Try to restore CCCD with bonded peer, if it doesn't exist (newly bonded), initialize it
if ( !loadCccd() ) sd_ble_gatts_sys_attr_set(_conn_hdl, NULL, 0, 0);
}
}
break;
//--------------------------------------------------------------------+
// GAP parameter negotiation
//--------------------------------------------------------------------+
case BLE_GAP_EVT_CONN_PARAM_UPDATE:
{
ble_gap_conn_params_t* param = &evt->evt.gap_evt.params.conn_param_update.conn_params;
_conn_interval = param->max_conn_interval;
_slave_latency = param->slave_latency;
_sup_timeout = param->conn_sup_timeout;
LOG_LV1("GAP", "Conn Interval= %.2f ms, Latency = %d, Supervisor Timeout = %d ms", _conn_interval*1.25f, _slave_latency, 10*_sup_timeout);
}
break;
//------------- MTU -------------//
case BLE_GATTS_EVT_EXCHANGE_MTU_REQUEST:
{
uint16_t const max_mtu = Bluefruit.getMaxMtu(_role);
_mtu = minof(evt->evt.gatts_evt.params.exchange_mtu_request.client_rx_mtu, max_mtu);
VERIFY_STATUS( sd_ble_gatts_exchange_mtu_reply(_conn_hdl, _mtu), );
LOG_LV1("GAP", "ATT MTU is changed to %d", _mtu);
}
break;
case BLE_GATTC_EVT_EXCHANGE_MTU_RSP:
_mtu = evt->evt.gattc_evt.params.exchange_mtu_rsp.server_rx_mtu;
LOG_LV1("GAP", "ATT MTU is changed to %d", _mtu);
break;
//------------- Data Length -------------//
case BLE_GAP_EVT_DATA_LENGTH_UPDATE_REQUEST:
{
ble_gap_data_length_params_t* param = &evt->evt.gap_evt.params.data_length_update_request.peer_params;
(void) param;
LOG_LV1("GAP", "Data Length Request is (tx, rx) octets = (%d, %d), (tx, rx) time = (%d, %d) us",
param->max_tx_octets, param->max_rx_octets, param->max_tx_time_us, param->max_rx_time_us);
// Let Softdevice decide the data length
VERIFY_STATUS( sd_ble_gap_data_length_update(_conn_hdl, NULL, NULL), );
}
break;
case BLE_GAP_EVT_DATA_LENGTH_UPDATE:
{
ble_gap_data_length_params_t* datalen = &evt->evt.gap_evt.params.data_length_update.effective_params;
(void) datalen;
LOG_LV1("GAP", "Data Length is (tx, rx) octets = (%d, %d), (tx, rx) time = (%d, %d) us",
datalen->max_tx_octets, datalen->max_rx_octets, datalen->max_tx_time_us, datalen->max_rx_time_us);
_data_length = datalen->max_tx_octets;
}
break;
//------------- PHY -------------//
case BLE_GAP_EVT_PHY_UPDATE_REQUEST:
{
ble_gap_phys_t* req_phy = &evt->evt.gap_evt.params.phy_update_request.peer_preferred_phys;
(void) req_phy;
LOG_LV1("GAP", "PHY request tx = 0x%02X, rx = 0x%02X", req_phy->tx_phys, req_phy->rx_phys);
// Tell SoftDevice to choose PHY automatically
ble_gap_phys_t phy = { BLE_GAP_PHY_AUTO, BLE_GAP_PHY_AUTO };
(void) sd_ble_gap_phy_update(_conn_hdl, &phy);
}
break;
case BLE_GAP_EVT_PHY_UPDATE:
{
ble_gap_evt_phy_update_t* active_phy = &evt->evt.gap_evt.params.phy_update;
if ( active_phy->status != BLE_HCI_STATUS_CODE_SUCCESS )
{
LOG_LV1("GAP", "Failed HCI status = 0x%02X", active_phy->status);
}else
{
char const *phy_str[] = { "Auto", "1 Mbps", "2 Mbps", "Coded" };
(void) phy_str;
LOG_LV1("GAP", "PHY active tx: %s, rx: %s", phy_str[active_phy->tx_phy], phy_str[active_phy->rx_phy]);
_phy = active_phy->tx_phy;
}
}
break;
//--------------------------------------------------------------------+
//
//--------------------------------------------------------------------+
case BLE_GATTS_EVT_HVN_TX_COMPLETE:
for(uint8_t i=0; i<evt->evt.gatts_evt.params.hvn_tx_complete.count; i++) xSemaphoreGive(_hvn_sem);
break;
case BLE_GATTC_EVT_WRITE_CMD_TX_COMPLETE:
for(uint8_t i=0; i<evt->evt.gattc_evt.params.write_cmd_tx_complete.count; i++) xSemaphoreGive(_wrcmd_sem);
break;
case BLE_GATTS_EVT_HVC:
{
LOG_LV2("GATTS", "Confirm received handle = 0x%04X", evt->evt.gatts_evt.params.hvc.handle);
_hvc_received = true;
if ( _hvc_sem ) xSemaphoreGive(_hvc_sem);
}
break;
case BLE_GATTS_EVT_TIMEOUT:
{
uint8_t timeout_src = evt->evt.gatts_evt.params.timeout.src;
LOG_LV2("GATTS", "Timeout Source = %d", timeout_src);
if (BLE_GATT_TIMEOUT_SRC_PROTOCOL == timeout_src)
{
_hvc_received = false;
if ( _hvc_sem ) xSemaphoreGive(_hvc_sem);
}
}
break;
case BLE_GATTS_EVT_SYS_ATTR_MISSING:
sd_ble_gatts_sys_attr_set(_conn_hdl, NULL, 0, 0);
break;
default: break;
}
}