Select one of the symbols to view example projects that use it.
 
Outline
#define __BTC_GAP_BT_H__
#include "common/bt_target.h"
#include "common/bt_defs.h"
#include "esp_bt_defs.h"
#include "esp_gap_bt_api.h"
#include "btc/btc_task.h"
#include "bta/utl.h"
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/btc/profile/std/include/btc_gap_bt.h
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef __BTC_GAP_BT_H__ #define __BTC_GAP_BT_H__ #include "common/bt_target.h" #include "common/bt_defs.h" #include "esp_bt_defs.h" #include "esp_gap_bt_api.h" #include "btc/btc_task.h" #include "bta/utl.h"6 includes #if (BTC_GAP_BT_INCLUDED == TRUE) typedef enum { BTC_GAP_BT_SEARCH_DEVICES_EVT = 0, BTC_GAP_BT_SEARCH_SERVICES_EVT, BTC_GAP_BT_SEARCH_SERVICE_RECORD_EVT, BTC_GAP_BT_AUTH_CMPL_EVT, BTC_GAP_BT_ENC_CHG_EVT, BTC_GAP_BT_PIN_REQ_EVT, BTC_GAP_BT_CFM_REQ_EVT, BTC_GAP_BT_KEY_NOTIF_EVT, BTC_GAP_BT_KEY_REQ_EVT, BTC_GAP_BT_READ_RSSI_DELTA_EVT, BTC_GAP_BT_CONFIG_EIR_DATA_EVT, BTC_GAP_BT_SET_AFH_CHANNELS_EVT, BTC_GAP_BT_READ_REMOTE_NAME_EVT, BTC_GAP_BT_MODE_CHG_EVT, BTC_GAP_BT_REMOVE_BOND_DEV_COMPLETE_EVT, BTC_GAP_BT_QOS_EVT, BTC_GAP_BT_SET_PAGE_TO_EVT, BTC_GAP_BT_GET_PAGE_TO_EVT, BTC_GAP_BT_SET_ACL_PKT_TYPES_EVT, #if (ENC_KEY_SIZE_CTRL_MODE != ENC_KEY_SIZE_CTRL_MODE_NONE) BTC_GAP_BT_SET_MIN_ENC_KEY_SIZE_EVT, #endif BTC_GAP_BT_GET_DEV_NAME_CMPL_EVT, }{...}btc_gap_bt_evt_t; typedef enum { BTC_GAP_BT_ACT_SET_SCAN_MODE = 0, BTC_GAP_BT_ACT_START_DISCOVERY, BTC_GAP_BT_ACT_CANCEL_DISCOVERY, BTC_GAP_BT_ACT_GET_REMOTE_SERVICES, BTC_GAP_BT_ACT_GET_REMOTE_SERVICE_RECORD, BTC_GAP_BT_ACT_SET_COD, BTC_GAP_BT_ACT_READ_RSSI_DELTA, BTC_GAP_BT_ACT_REMOVE_BOND_DEVICE, BTC_GAP_BT_ACT_SET_PIN_TYPE, BTC_GAP_BT_ACT_PIN_REPLY, BTC_GAP_BT_ACT_SET_SECURITY_PARAM, BTC_GAP_BT_ACT_PASSKEY_REPLY, BTC_GAP_BT_ACT_CONFIRM_REPLY, BTC_GAP_BT_ACT_CONFIG_EIR, BTC_GAP_BT_ACT_SET_AFH_CHANNELS, BTC_GAP_BT_ACT_READ_REMOTE_NAME, BTC_GAP_BT_ACT_SET_QOS, BTC_GAP_BT_ACT_SET_PAGE_TIMEOUT, BTC_GAP_BT_ACT_GET_PAGE_TIMEOUT, BTC_GAP_BT_ACT_SET_ACL_PKT_TYPES, #if (ENC_KEY_SIZE_CTRL_MODE != ENC_KEY_SIZE_CTRL_MODE_NONE) BTC_GAP_BT_ACT_SET_MIN_ENC_KEY_SIZE, #endif BTC_GAP_BT_ACT_SET_DEV_NAME, BTC_GAP_BT_ACT_GET_DEV_NAME, }{...} btc_gap_bt_act_t; /* btc_bt_gap_args_t */ typedef union { // BTC_BT_GAP_ACT_SET_SCAN_MODE, struct set_bt_scan_mode_args { esp_bt_connection_mode_t c_mode; esp_bt_discovery_mode_t d_mode; }{...} set_scan_mode; // BTC_GAP_BT_ACT_START_DISCOVERY struct start_disc_args { esp_bt_inq_mode_t mode; uint8_t inq_len; uint8_t num_rsps; }{...} start_disc; // BTC_GAP_BT_ACT_GET_REMOTE_SERVICES bt_bdaddr_t bda; // BTC_GAP_BT_ACT_GET_REMOTE_SERVICE_RECORD struct get_rmt_srv_rcd_args { bt_bdaddr_t bda; esp_bt_uuid_t uuid; }{...} get_rmt_srv_rcd; // BTC_GAP_BT_ACT_SET_COD struct set_cod_args { esp_bt_cod_t cod; esp_bt_cod_mode_t mode; }{...} set_cod; //BTC_GAP_BT_ACT_READ_RSSI_DELTA, struct bt_read_rssi_delta_args { bt_bdaddr_t bda; }{...} read_rssi_delta; // BTC_GAP_BT_ACT_REMOVE_BOND_DEVICE struct rm_bond_device_args { bt_bdaddr_t bda; }{...} rm_bond_device; // BTC_GAP_BT_ACT_SET_PIN_TYPE struct set_pin_type_args { esp_bt_pin_type_t pin_type; uint8_t pin_code_len; esp_bt_pin_code_t pin_code; }{...} set_pin_type; // BTC_GAP_BT_ACT_PIN_REPLY struct pin_reply_args { bt_bdaddr_t bda; bool accept; uint8_t pin_code_len; esp_bt_pin_code_t pin_code; }{...} pin_reply; // BTC_GAP_BT_ACT_SET_SECURITY_PARAM struct set_sec_param_args { esp_bt_sp_param_t param_type; uint8_t len; uint8_t *value; }{...} set_security_param; // BTC_GAP_BT_ACT_PASSKEY_REPLY struct passkey_reply_args { bt_bdaddr_t bda; bool accept; uint32_t passkey; }{...} passkey_reply; // BTC_GAP_BT_ACT_CONFIRM_REPLY struct confirm_reply_args { bt_bdaddr_t bda; bool accept; }{...} confirm_reply; // BTC_GAP_BT_ACT_CONFIG_EIR struct config_eir_args { esp_bt_eir_data_t eir_data; }{...} config_eir; // BTC_GAP_BT_ACT_SET_AFH_CHANNELS struct set_afh_channels_args { esp_bt_gap_afh_channels channels; }{...} set_afh_channels; // BTC_GAP_BT_ACT_READ_REMOTE_NAME bt_bdaddr_t rmt_name_bda; // BTC_GAP_BT_ACT_SET_QOS struct set_qos_args { bt_bdaddr_t bda; uint32_t t_poll; }{...} set_qos; // BTC_GAP_BT_ACT_SET_PAGE_TIMEOUT struct set_page_to_args { uint16_t page_to; }{...} set_page_to; // BTC_GAP_BT_ACT_SET_ACL_PKT_TYPES struct set_acl_pkt_types_args { bt_bdaddr_t bda; uint16_t pkt_types; }{...} set_acl_pkt_types; #if (ENC_KEY_SIZE_CTRL_MODE != ENC_KEY_SIZE_CTRL_MODE_NONE) // BTC_GAP_BT_ACT_SET_MIN_ENC_KEY_SIZE struct set_min_enc_key_size_args { uint8_t key_size; }{...} set_min_enc_key_size;/* ... */ #endif // BTC_GAP_BT_ACT_SET_DEV_NAME struct bt_set_dev_name_args { char *device_name; }{...} bt_set_dev_name; }{...} btc_gap_bt_args_t; void btc_gap_bt_call_handler(btc_msg_t *msg); void btc_gap_bt_cb_handler(btc_msg_t *msg); void btc_gap_bt_arg_deep_copy(btc_msg_t *msg, void *p_dest, void *p_src); void btc_gap_bt_arg_deep_free(btc_msg_t *msg); void btc_gap_bt_busy_level_updated(uint8_t bl_flags); esp_err_t btc_gap_bt_get_cod(esp_bt_cod_t *cod);/* ... */ #endif /* #if BTC_GAP_BT_INCLUDED */ /* ... */ #endif /* __BTC_GAP_BT_H__ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.