Select one of the symbols to view example projects that use it.
 
Outline
#include "common/bt_defs.h"
#include "common/bt_common_types.h"
#include "common/bte.h"
#include "stack/btu.h"
#include "common/bt_trace.h"
#include "osi/osi.h"
#include "osi/alarm.h"
#include "osi/hash_map.h"
#include "osi/hash_functions.h"
#include "device/controller.h"
#include "hci/hci_layer.h"
#include "bta/bta_api.h"
hci
bluedroid_init_done_cb
bte_main_boot_entry(bluedroid_init_done_cb_t)
bte_main_shutdown()
bte_main_enable()
bte_main_disable()
bte_main_postload_cfg()
bte_main_hci_send(BT_HDR *, UINT16)
Files
loading (3/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/main/bte_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
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/****************************************************************************** * * Copyright (C) 2009-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. * ******************************************************************************//* ... */ /****************************************************************************** * * Filename: bte_main.c * * Description: Contains BTE core stack initialization and shutdown code * ******************************************************************************//* ... */ #include "common/bt_defs.h" #include "common/bt_common_types.h" #include "common/bte.h" #include "stack/btu.h" #include "common/bt_trace.h" #include "osi/osi.h" #include "osi/alarm.h" #include "osi/hash_map.h" #include "osi/hash_functions.h" #include "device/controller.h" #include "hci/hci_layer.h" #include "bta/bta_api.h"12 includes /******************************************************************************* ** Constants & Macros *******************************************************************************//* ... */ /****************************************************************************** ** Variables ******************************************************************************//* ... */ /******************************************************************************* ** Static variables *******************************************************************************//* ... */ static const hci_t *hci; /******************************************************************************* ** Static functions *******************************************************************************//* ... */ static void bte_main_disable(void); static void bte_main_enable(void); /******************************************************************************* ** Externs *******************************************************************************//* ... */ bluedroid_init_done_cb_t bluedroid_init_done_cb; extern void osi_mem_dbg_init(void); /****************************************************************************** ** ** Function bte_main_boot_entry ** ** Description BTE MAIN API - Entry point for BTE chip/stack initialization ** ** Returns None ** ******************************************************************************//* ... */ int bte_main_boot_entry(bluedroid_init_done_cb_t cb) { hci = hci_layer_get_interface(); if (!hci) { APPL_TRACE_ERROR("%s could not get hci layer interface.\n", __func__); return -2; }{...} bluedroid_init_done_cb = cb; osi_init(); //Enbale HCI bte_main_enable(); return 0; }{ ... } /****************************************************************************** ** ** Function bte_main_shutdown ** ** Description BTE MAIN API - Shutdown code for BTE chip/stack ** ** Returns None ** ******************************************************************************//* ... */ void bte_main_shutdown(void) { #if (BLE_INCLUDED == TRUE) BTA_VendorCleanup(); #endif bte_main_disable(); osi_deinit(); }{ ... } /****************************************************************************** ** ** Function bte_main_enable ** ** Description BTE MAIN API - Creates all the BTE tasks. Should be called ** part of the Bluetooth stack enable sequence ** ** Returns None ** ******************************************************************************//* ... */ static void bte_main_enable(void) { APPL_TRACE_DEBUG("Enable HCI\n"); if (hci_start_up()) { APPL_TRACE_ERROR("Start HCI Host Layer Failure\n"); return; }{...} //Now Test Case Not Supported BTU BTU_StartUp(); }{ ... } /****************************************************************************** ** ** Function bte_main_disable ** ** Description BTE MAIN API - Destroys all the BTE tasks. Should be called ** part of the Bluetooth stack disable sequence ** ** Returns None ** ******************************************************************************//* ... */ static void bte_main_disable(void) { /* APPL_TRACE_DEBUG("%s", __FUNCTION__); module_shut_down(get_module(HCI_MODULE)); module_shut_down(get_module(BTSNOOP_MODULE)); *//* ... */ hci_shut_down(); BTU_ShutDown(); }{ ... } /****************************************************************************** ** ** Function bte_main_postload_cfg ** ** Description BTE MAIN API - Stack postload configuration ** ** Returns None ** ******************************************************************************//* ... */ void bte_main_postload_cfg(void) { hci->do_postload(); }{ ... } #if (defined(HCILP_INCLUDED) && HCILP_INCLUDED == TRUE) /****************************************************************************** ** ** Function bte_main_enable_lpm ** ** Description BTE MAIN API - Enable/Disable low power mode operation ** ** Returns None ** ******************************************************************************//* ... */ void bte_main_enable_lpm(BOOLEAN enable) { /*Enable Low power ?*/ //hci->send_low_power_command(enable ? LPM_ENABLE : LPM_DISABLE); }{...} /****************************************************************************** ** ** Function bte_main_lpm_allow_bt_device_sleep ** ** Description BTE MAIN API - Allow BT controller goest to sleep ** ** Returns None ** ******************************************************************************//* ... */ void bte_main_lpm_allow_bt_device_sleep(void) { /**/ //hci->send_low_power_command(LPM_WAKE_DEASSERT); }{...} /****************************************************************************** ** ** Function bte_main_lpm_wake_bt_device ** ** Description BTE MAIN API - Wake BT controller up if it is in sleep mode ** ** Returns None ** ******************************************************************************//* ... */ void bte_main_lpm_wake_bt_device(void) { //hci->send_low_power_command(LPM_WAKE_ASSERT); }{...} /* ... */#endif // HCILP_INCLUDED /****************************************************************************** ** ** Function bte_main_hci_send ** ** Description BTE MAIN API - This function is called by the upper stack to ** send an HCI message. The function displays a protocol trace ** message (if enabled), and then calls the 'transmit' function ** associated with the currently selected HCI transport ** ** Returns None ** ******************************************************************************//* ... */ void bte_main_hci_send (BT_HDR *p_msg, UINT16 event) { UINT16 sub_event = event & BT_SUB_EVT_MASK; /* local controller ID */ p_msg->event = event; //counter_add("main.tx.packets", 1); //counter_add("main.tx.bytes", p_msg->len); if ((sub_event == LOCAL_BR_EDR_CONTROLLER_ID) || \ (sub_event == LOCAL_BLE_CONTROLLER_ID)) { hci->transmit_downward(event, p_msg); }{...} else { //APPL_TRACE_ERROR("Invalid Controller ID. Discarding message."); osi_free(p_msg); }{...} }{ ... }
Details