Select one of the symbols to view example projects that use it.
 
Outline
#define __BTC_GATT_COMMON_H__
#include "osi/future.h"
#include "stack/bt_types.h"
#include "bta/bta_api.h"
#include "btc/btc_main.h"
#include "btc/btc_task.h"
btc_gatt_com_act_t
btc_ble_gatt_com_args_t
btc_gatt_com_call_handler(btc_msg_t *);
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/btc/profile/std/include/btc_gatt_common.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef __BTC_GATT_COMMON_H__ #define __BTC_GATT_COMMON_H__ #include "osi/future.h" #include "stack/bt_types.h" #include "bta/bta_api.h" #include "btc/btc_main.h" #include "btc/btc_task.h"5 includes typedef enum { BTC_GATT_ACT_SET_LOCAL_MTU = 0, }{ ... } btc_gatt_com_act_t; /* btc_ble_gattc_args_t */ typedef union { //BTC_GATT_ACT_SET_LOCAL_MTU, struct set_mtu_arg { uint16_t mtu; }{ ... } set_mtu; }{ ... } btc_ble_gatt_com_args_t; void btc_gatt_com_call_handler(btc_msg_t *msg);/* ... */ #endif /* __BTC_GATT_COMMON_H__ */
Details