1
6
7
13
14
15
16
17
21
22
/* ... */
/* ... */
#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();
}{ ... }