1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
29
30
31
32
33
34
35
36
37
38
43
44
47
48
49
50
53
54
63
64
67
68
69
70
71
72
73
74
75
76
82
83
90
91
92
93
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
249
250
251
/* ... */
#include "bta/bta_api.h"
#if( defined BLE_INCLUDED ) && (BLE_INCLUDED == TRUE)
#if( defined GATTS_INCLUDED ) && (GATTS_INCLUDED == TRUE)
#include <stdlib.h>
#include <string.h>
#include "bta/bta_gatts_co.h"
#include "btc/btc_storage.h"
#include "btc/btc_ble_storage.h"5 includes
#if (defined(BTIF_INCLUDED) && BTIF_INCLUDED == TRUE)
/* ... */
#define BTIF_GATTS_MAX_SRV_CHG_CLT_SIZE 50
typedef struct {
BOOLEAN enable;
UINT8 num_clients;
tBTA_GATTS_SRV_CHG srv_chg[BTIF_GATTS_MAX_SRV_CHG_CLT_SIZE];
}{...} __attribute__((packed)) btif_gatts_srv_chg_cb_t;
/* ... */
static btif_gatts_srv_chg_cb_t btif_gatts_srv_chg_cb;
/* ... */
static void btif_gatts_check_init(void)
{
btif_gatts_srv_chg_cb_t *p_cb = &btif_gatts_srv_chg_cb;
if (!p_cb->enable) {
memset(p_cb, 0, sizeof(btif_gatts_srv_chg_cb_t));
p_cb->enable = TRUE;
}{...}
}{...}
/* ... */
void btif_gatts_add_bonded_dev_from_nv(BD_ADDR bda)
{
btif_gatts_srv_chg_cb_t *p_cb = &btif_gatts_srv_chg_cb;
BOOLEAN found = FALSE;
UINT8 i;
btif_gatts_check_init();
for (i = 0; i != p_cb->num_clients; ++i) {
if (!memcmp(p_cb->srv_chg[i].bda, bda, sizeof(BD_ADDR))) {
found = TRUE;
break;
}{...}
}{...}
if (!found) {
if (p_cb->num_clients < BTIF_GATTS_MAX_SRV_CHG_CLT_SIZE) {
bdcpy(p_cb->srv_chg[p_cb->num_clients].bda, bda);
p_cb->srv_chg[p_cb->num_clients].srv_changed = FALSE;
p_cb->num_clients++;
}{...}
}{...}
}{...}
/* ... */
#endif
/* ... */
/* ... */
void bta_gatts_co_update_handle_range(BOOLEAN is_add, tBTA_GATTS_HNDL_RANGE *p_hndl_range)
{
UNUSED(is_add);
UNUSED(p_hndl_range);
}{ ... }
/* ... */
BOOLEAN bta_gatts_co_srv_chg(tBTA_GATTS_SRV_CHG_CMD cmd,
tBTA_GATTS_SRV_CHG_REQ *p_req,
tBTA_GATTS_SRV_CHG_RSP *p_rsp)
{
UNUSED(cmd);
UNUSED(p_req);
UNUSED(p_rsp);
return FALSE;
}{ ... }
/* ... */
BOOLEAN bta_gatts_co_load_handle_range(UINT8 index,
tBTA_GATTS_HNDL_RANGE *p_handle_range)
{
UNUSED(index);
UNUSED(p_handle_range);
return FALSE;
}{ ... }
#if (SMP_INCLUDED == TRUE)
/* ... */
void bta_gatts_co_cl_feat_save(BD_ADDR remote_addr, UINT8 *feature)
{
bt_bdaddr_t bd_addr;
memcpy(bd_addr.address, remote_addr, BD_ADDR_LEN);
btc_storage_set_gatt_cl_supp_feat(&bd_addr, feature, 1);
}{ ... }
/* ... */
void bta_gatts_co_db_hash_save(BD_ADDR remote_addr, BT_OCTET16 db_hash)
{
bt_bdaddr_t bd_addr;
memcpy(bd_addr.address, remote_addr, BD_ADDR_LEN);
btc_storage_set_gatt_db_hash(&bd_addr, db_hash, BT_OCTET16_LEN);
}{ ... }
/* ... */
void bta_gatts_co_cl_feat_load(BD_ADDR remote_addr, UINT8 *feature)
{
bt_bdaddr_t bd_addr;
memcpy(bd_addr.address, remote_addr, BD_ADDR_LEN);
btc_storage_get_gatt_cl_supp_feat(&bd_addr, feature, 1);
}{ ... }
/* ... */
void bta_gatts_co_db_hash_load(BD_ADDR remote_addr, BT_OCTET16 db_hash)
{
bt_bdaddr_t bd_addr;
memcpy(bd_addr.address, remote_addr, BD_ADDR_LEN);
btc_storage_get_gatt_db_hash(&bd_addr, db_hash, BT_OCTET16_LEN);
}{ ... }
#endif/* ... */ /* ... */
#endif /* ... */
#endif