1 /* 2 * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 /****************************************************************************** 8 * 9 * This file contains the action functions for gatts and gattc. 10 * 11 * 12 ******************************************************************************/ 13 14 #include "bta/bta_gatt_common.h" 15 #include "gatt_int.h" 16 BTA_GATT_SetLocalMTU(uint16_t mtu)17void BTA_GATT_SetLocalMTU(uint16_t mtu) 18 { 19 gatt_set_local_mtu(mtu); 20 } 21 BTA_GATT_GetLocalMTU(void)22uint16_t BTA_GATT_GetLocalMTU(void) 23 { 24 return gatt_get_local_mtu(); 25 } 26