Select one of the symbols to view example projects that use it.
 
Outline
#include "common/bt_target.h"
#include <string.h>
#include "bta_gatts_int.h"
#include "osi/allocator.h"
tBTA_GATTS_SRVC_ACT
bta_gatts_srvc_build_act
bta_gatts_cb
bta_gatts_hdl_event(BT_HDR *)
bta_gatts_deinit()
bta_gatts_srvc_active_count()
Files
loading (1/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/bta/gatt/bta_gatts_main.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/****************************************************************************** * * Copyright (C) 2003-2012 Broadcom Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * *****************************************************************************//* ... */ /****************************************************************************** * * This file contains the GATT server main functions and state machine. * ******************************************************************************//* ... */ #include "common/bt_target.h" #if defined(GATTS_INCLUDED) && (GATTS_INCLUDED == TRUE) #include <string.h> #include "bta_gatts_int.h" #include "osi/allocator.h" /* type for service building action functions */ typedef void (*tBTA_GATTS_SRVC_ACT)(tBTA_GATTS_SRVC_CB *p_rcb, tBTA_GATTS_DATA *p_data); /* service building action function list */ const tBTA_GATTS_SRVC_ACT bta_gatts_srvc_build_act[] = { bta_gatts_add_include_srvc, bta_gatts_add_char, bta_gatts_add_char_descr, bta_gatts_delete_service, bta_gatts_start_service, bta_gatts_stop_service, }{...}; /* GATTS control block */ #if BTA_DYNAMIC_MEMORY == FALSE tBTA_GATTS_CB bta_gatts_cb; #else tBTA_GATTS_CB *bta_gatts_cb_ptr; #endif /******************************************************************************* ** ** Function bta_gatts_hdl_event ** ** Description BTA GATT server main event handling function. ** ** ** Returns void ** *******************************************************************************//* ... */ BOOLEAN bta_gatts_hdl_event(BT_HDR *p_msg) { tBTA_GATTS_CB *p_cb = &bta_gatts_cb; tBTA_GATTS_SRVC_CB *p_srvc_cb = NULL; switch (p_msg->event) { case BTA_GATTS_API_DISABLE_EVT: bta_gatts_api_disable(p_cb); break; ... case BTA_GATTS_API_REG_EVT: bta_gatts_register(p_cb, (tBTA_GATTS_DATA *) p_msg); break; ... case BTA_GATTS_INT_START_IF_EVT: bta_gatts_start_if(p_cb, (tBTA_GATTS_DATA *) p_msg); break; ... case BTA_GATTS_API_DEREG_EVT: bta_gatts_deregister(p_cb, (tBTA_GATTS_DATA *) p_msg); break; ... case BTA_GATTS_API_CREATE_SRVC_EVT: bta_gatts_create_srvc(p_cb, (tBTA_GATTS_DATA *) p_msg); break; ... case BTA_GATTS_API_INDICATION_EVT: bta_gatts_indicate_handle(p_cb, (tBTA_GATTS_DATA *) p_msg); break; ... case BTA_GATTS_API_OPEN_EVT: bta_gatts_open(p_cb, (tBTA_GATTS_DATA *) p_msg); break; ... case BTA_GATTS_API_CANCEL_OPEN_EVT: bta_gatts_cancel_open(p_cb, (tBTA_GATTS_DATA *) p_msg); break; ... case BTA_GATTS_API_CLOSE_EVT: bta_gatts_close(p_cb, (tBTA_GATTS_DATA *) p_msg); break; ... case BTA_GATTS_API_RSP_EVT: bta_gatts_send_rsp(p_cb, (tBTA_GATTS_DATA *) p_msg); break;... case BTA_GATTS_API_SET_ATTR_VAL_EVT:{ UINT16 attr_id = ((tBTA_GATTS_DATA *) p_msg)->api_set_val.hdr.layer_specific; p_srvc_cb = bta_gatts_find_srvc_cb_by_attr_id(p_cb, attr_id); bta_gatts_set_attr_value(p_srvc_cb, (tBTA_GATTS_DATA *) p_msg); break; }{...} case BTA_GATTS_API_LISTEN_EVT: bta_gatts_listen(p_cb, (tBTA_GATTS_DATA *) p_msg); break;... case BTA_GATTS_API_ADD_INCL_SRVC_EVT: case BTA_GATTS_API_ADD_CHAR_EVT: case BTA_GATTS_API_ADD_DESCR_EVT: case BTA_GATTS_API_DEL_SRVC_EVT: case BTA_GATTS_API_START_SRVC_EVT: case BTA_GATTS_API_STOP_SRVC_EVT: p_srvc_cb = bta_gatts_find_srvc_cb_by_srvc_id(p_cb, ((tBTA_GATTS_DATA *)p_msg)->api_add_incl_srvc.hdr.layer_specific); if (p_srvc_cb != NULL) { bta_gatts_srvc_build_act[p_msg->event - BTA_GATTS_API_ADD_INCL_SRVC_EVT](p_srvc_cb, (tBTA_GATTS_DATA *) p_msg); }{...} else { APPL_TRACE_ERROR("service not created\n"); }{...} break;... case BTA_GATTS_API_SEND_SERVICE_CHANGE_EVT: bta_gatts_send_service_change_indication((tBTA_GATTS_DATA *) p_msg); break;... case BTA_GATTS_API_SHOW_LOCAL_DATABASE_EVT: bta_gatts_show_local_database(); break;... default: break;... }{...} return (TRUE); }{ ... } void bta_gatts_deinit(void) { memset(&bta_gatts_cb, 0, sizeof(tBTA_GATTS_CB)); #if BTA_DYNAMIC_MEMORY FREE_AND_RESET(bta_gatts_cb_ptr); #endif /* #if BTA_DYNAMIC_MEMORY */ }{ ... } uint8_t bta_gatts_srvc_active_count(void) { uint8_t count = 0; for (uint8_t i = 0; i < BTA_GATTS_MAX_SRVC_NUM; i ++) { if (bta_gatts_cb.srvc_cb[i].in_use) { count++; }{...} }{...} return count; }{ ... } /* ... */#endif /* GATTS_INCLUDED */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.