Select one of the symbols to view example projects that use it.
 
Outline
#define __BTC_SDP_H__
#include "btc/btc_task.h"
#include "esp_bt_defs.h"
#include "common/bt_target.h"
#include "bta/bta_sdp_api.h"
#include "bt_sdp.h"
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/btc/profile/std/include/btc_sdp.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef __BTC_SDP_H__ #define __BTC_SDP_H__ #include "btc/btc_task.h" #include "esp_bt_defs.h" #include "common/bt_target.h" #include "bta/bta_sdp_api.h" #include "bt_sdp.h"5 includes #if (defined BTC_SDP_COMMON_INCLUDED && BTC_SDP_COMMON_INCLUDED == TRUE) typedef enum { BTC_SDP_ACT_INIT = 0, BTC_SDP_ACT_DEINIT, BTC_SDP_ACT_SEARCH, BTC_SDP_ACT_CREATE_RECORD, BTC_SDP_ACT_REMOVE_RECORD, }{...} btc_sdp_act_t; /* btc_sdp_args_t */ typedef union { //BTC_SDP_ACT_SEARCH struct search_record_arg { BD_ADDR bd_addr; tSDP_UUID sdp_uuid; }{...} search; //BTC_SDP_ACT_CREATE_RECORD struct create_record_arg { bluetooth_sdp_record *record; }{...} create_record; //BTC_SDP_ACT_REMOVE_RECORD struct remove_record_arg { int record_handle; }{...} remove_record; }{...} btc_sdp_args_t; void btc_sdp_arg_deep_copy(btc_msg_t *msg, void *p_dest, void *p_src); void btc_sdp_arg_deep_free(btc_msg_t *msg); void btc_sdp_call_handler(btc_msg_t *msg); void btc_sdp_cb_handler(btc_msg_t *msg); /* ... */ #endif ///defined BTC_SDP_COMMON_INCLUDED && BTC_SDP_COMMON_INCLUDED == TRUE/* ... */ #endif ///__BTC_SDP_H__
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.