Select one of the symbols to view example projects that use it.
 
Outline
#include "bta/bta_gatt_common.h"
#include "gatt_int.h"
BTA_GATT_SetLocalMTU(uint16_t)
BTA_GATT_GetLocalMTU()
Files
loading (1/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/bta/gatt/bta_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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ /****************************************************************************** * * This file contains the action functions for gatts and gattc. * * ******************************************************************************//* ... */ #include "bta/bta_gatt_common.h" #include "gatt_int.h" void BTA_GATT_SetLocalMTU(uint16_t mtu) { gatt_set_local_mtu(mtu); }{ ... } uint16_t BTA_GATT_GetLocalMTU(void) { return gatt_get_local_mtu(); }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.