1 /****************************************************************************** 2 * 3 * Copyright (C) 2009-2013 Broadcom Corporation 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at: 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 * 17 ******************************************************************************/ 18 19 20 #ifndef BTIF_GATT_UTIL_H 21 #define BTIF_GATT_UTIL_H 22 23 void btif_to_bta_uuid(tBT_UUID *p_dest, bt_uuid_t *p_src); 24 void btif_to_bta_char_id(tBTA_GATT_ID *p_dest, btgatt_char_id_t *p_src); 25 void btif_to_bta_srvc_id(tBTA_GATT_SRVC_ID *p_dest, btgatt_srvc_id_t *p_src); 26 void btif_to_bta_response(tBTA_GATTS_RSP *p_dest, btgatt_response_t* p_src); 27 28 void bta_to_btif_uuid(bt_uuid_t *p_dest, tBT_UUID *p_src); 29 void bta_to_btif_srvc_id(btgatt_srvc_id_t *p_dest, tBTA_GATT_SRVC_ID *p_src); 30 void bta_to_btif_char_id(btgatt_char_id_t *p_dest, tBTA_GATT_ID *p_src); 31 32 uint16_t set_read_value(btgatt_read_params_t *p_dest, tBTA_GATTC_READ *p_src); 33 34 void btif_gatt_check_encrypted_link(BD_ADDR bd_addr); 35 void btif_gatt_remove_encrypted_link(BD_ADDR bd_addr); 36 37 38 #endif 39 40