1
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
29
30
36
37
46
47
51
52
53
54
55
56
57
58
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
95
96
97
98
120
121
122
123
124
125
129
130
131
132
133
136
137
138
139
142
143
144
145
148
149
150
151
154
155
156
167
168
169
175
176
177
178
184
185
186
187
190
191
192
193
196
197
198
199
200
203
204
205
206
209
210
211
212
218
219
220
/* ... */
#include "btc/btc_task.h"
#include "btc/btc_main.h"
#include "btc/btc_dm.h"
#include "osi/future.h"
#include "esp_err.h"
#include "btc/btc_config.h"
#include "osi/alarm.h"
#include "btc/btc_ble_storage.h"
#include "btc_gap_ble.h"
#include "bta_gattc_int.h"
#include "bta_gatts_int.h"
#include "bta_dm_int.h"12 includes
static future_t *main_future[BTC_MAIN_FUTURE_NUM];
extern int bte_main_boot_entry(void *cb);
extern int bte_main_shutdown(void);
future_t **btc_main_get_future_p(btc_main_future_type_t type)
{
return &main_future[type];
}{ ... }
static void btc_enable_bluetooth(void)
{
if (BTA_EnableBluetooth(btc_dm_sec_evt) != BTA_SUCCESS) {
future_ready(*btc_main_get_future_p(BTC_MAIN_ENABLE_FUTURE), FUTURE_FAIL);
}{...}
}{ ... }
static void btc_disable_bluetooth(void)
{
#if (SMP_INCLUDED)
btc_config_shut_down();
#endif
if (BTA_DisableBluetooth() != BTA_SUCCESS) {
future_ready(*btc_main_get_future_p(BTC_MAIN_DISABLE_FUTURE), FUTURE_FAIL);
}{...}
}{ ... }
void btc_init_callback(void)
{
future_ready(*btc_main_get_future_p(BTC_MAIN_INIT_FUTURE), FUTURE_SUCCESS);
}{ ... }
static void btc_init_bluetooth(void)
{
osi_alarm_create_mux();
osi_alarm_init();
bte_main_boot_entry(btc_init_callback);
#if (SMP_INCLUDED)
btc_config_init();
#if (BLE_INCLUDED == TRUE)
btc_dm_load_ble_local_keys();
bta_dm_co_security_param_init();/* ... */
#endif /* ... */
#endif
#if BTA_DYNAMIC_MEMORY
deinit_semaphore = xSemaphoreCreateBinary();
#endif
}{ ... }
static void btc_deinit_bluetooth(void)
{
#if BTA_DYNAMIC_MEMORY
xSemaphoreTake(deinit_semaphore, BTA_DISABLE_DELAY / portTICK_PERIOD_MS);
#endif
bta_dm_sm_deinit();
#if (GATTC_INCLUDED)
bta_gattc_deinit();
#endif
#if (GATTS_INCLUDED)
bta_gatts_deinit();
#endif
bte_main_shutdown();
#if (SMP_INCLUDED)
btc_config_clean_up();
#endif
osi_alarm_deinit();
osi_alarm_delete_mux();
future_ready(*btc_main_get_future_p(BTC_MAIN_DEINIT_FUTURE), FUTURE_SUCCESS);
#if BTA_DYNAMIC_MEMORY
vSemaphoreDelete(deinit_semaphore);
deinit_semaphore = NULL;/* ... */
#endif
}{ ... }
void btc_main_call_handler(btc_msg_t *msg)
{
BTC_TRACE_DEBUG("%s act %d\n", __func__, msg->act);
switch (msg->act) {
case BTC_MAIN_ACT_INIT:
btc_init_bluetooth();
break;...
case BTC_MAIN_ACT_DEINIT:
btc_deinit_bluetooth();
break;...
case BTC_MAIN_ACT_ENABLE:
btc_enable_bluetooth();
break;...
case BTC_MAIN_ACT_DISABLE:
btc_disable_bluetooth();
break;...
default:
BTC_TRACE_ERROR("%s UNKNOWN ACT %d\n", __func__, msg->act);
break;...
}{...}
}{ ... }
uint32_t btc_get_ble_status(void)
{
uint32_t status = BTC_BLE_STATUS_IDLE;
if (esp_bluedroid_get_status() != ESP_BLUEDROID_STATUS_ENABLED) {
BTC_TRACE_ERROR("%s Bluedroid not enabled", __func__);
return status;
}{...}
#if (BLE_INCLUDED == TRUE)
extern uint8_t btm_ble_adv_active_count(void);
if (btm_ble_adv_active_count()) {
status |= BIT(BTC_BLE_STATUS_ADV);
}{...}
extern uint8_t btm_ble_scan_active_count(void);
if (btm_ble_scan_active_count()) {
status |= BIT(BTC_BLE_STATUS_SCAN);
}{...}
extern uint8_t gatt_tcb_active_count(void);
if (gatt_tcb_active_count()) {
status |= BIT(BTC_BLE_STATUS_CONN);
}{...}
extern uint8_t btm_get_ble_addr_resolve_disable_status(void);
if (btm_get_ble_addr_resolve_disable_status()) {
status |= BIT(BTC_BLE_STATUS_ADDR_RESOLVE_DISABLE);
}{...}
#if (SMP_INCLUDED == TRUE)
extern uint8_t btm_ble_sec_dev_active_count(void);
if (btm_ble_sec_dev_active_count()) {
status |= BIT(BTC_BLE_STATUS_KEYS);
}{...}
if (btc_storage_get_num_ble_bond_devices()) {
status |= BIT(BTC_BLE_STATUS_BOND);
}{...}
/* ... */ #endif
#if (BLE_PRIVACY_SPT == TRUE)
extern uint8_t btm_ble_privacy_is_enabled(void);
if (btm_ble_privacy_is_enabled()) {
status |= BIT(BTC_BLE_STATUS_PRIVACY);
}{...}
/* ... */ #endif/* ... */
#endif
#if (BLE_50_FEATURE_SUPPORT == TRUE)
extern uint8_t btm_ble_ext_adv_active_count(void);
if (btm_ble_ext_adv_active_count()) {
status |= BIT(BTC_BLE_STATUS_EXT_ADV);
}{...}
/* ... */#endif
extern uint8_t btm_acl_active_count(void);
if (btm_acl_active_count()) {
status |= BIT(BTC_BLE_STATUS_CONN);
}{...}
extern uint8_t l2cu_plcb_active_count(void);
if (l2cu_plcb_active_count()) {
status |= BIT(BTC_BLE_STATUS_CONN);
}{...}
#if (GATTC_INCLUDED == TRUE)
extern uint8_t bta_gattc_cl_rcb_active_count(void);
if (bta_gattc_cl_rcb_active_count()) {
status |= BIT(BTC_BLE_STATUS_GATTC_APP);
}{...}
extern UINT8 bta_gattc_co_get_addr_num(void);
if (bta_gattc_co_get_addr_num()) {
status |= BIT(BTC_BLE_STATUS_GATTC_CACHE);
}{...}
/* ... */ #endif
#if (GATTS_INCLUDED == TRUE)
extern uint8_t bta_gatts_srvc_active_count(void);
if (bta_gatts_srvc_active_count()) {
status |= BIT(BTC_BLE_STATUS_GATTS_SRVC);
}{...}
/* ... */ #endif
return status;
}{ ... }