Select one of the symbols to view example projects that use it.
 
Outline
#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_gatt_common.h"
#include "bta/bta_gatt_common.h"
btc_set_local_mtu(uint16_t)
btc_gatt_com_call_handler(btc_msg_t *)
Files
loading (1/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/btc/profile/std/gatt/btc_gatt_common.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #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_gatt_common.h" #include "bta/bta_gatt_common.h"10 includes static void btc_set_local_mtu(uint16_t mtu) { BTA_GATT_SetLocalMTU(mtu); }{ ... } void btc_gatt_com_call_handler(btc_msg_t *msg) { BTC_TRACE_DEBUG("%s act %d\n", __func__, msg->act); switch (msg->act) { case BTC_GATT_ACT_SET_LOCAL_MTU: { btc_ble_gatt_com_args_t *arg = (btc_ble_gatt_com_args_t *)(msg->arg); btc_set_local_mtu(arg->set_mtu.mtu); break; }{...} default: BTC_TRACE_ERROR("%s UNKNOWN ACT %d\n", __func__, msg->act); break;... }{...} }{ ... }
Details