ESP-IDF
Select one of the symbols to view example projects that use it.
Symbol previews are coming soon...
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 *)
switch
(msg->act)
case
BTC_GATT_ACT_SET_LOCAL_MTU:
default
Files
loading (1/5)...
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
components/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
Show:
from
Types:
Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.
BTA_GATT_SetLocalMTU()
btc_gatt_com_call_handler()
btc_set_local_mtu()
btc_msg::act
BTC_TRACE_ERROR
BTC_TRACE_DEBUG
btc_msg::arg
btc_gatt_com_call_handler()::msg
btc_gatt_com_act_t::BTC_GATT_ACT_SET_LOCAL_MTU
btc_ble_gatt_com_args_t::set_mtu
set_mtu_arg::mtu
btc_set_local_mtu()::mtu
btc_msg_t
btc_ble_gatt_com_args_t