1 /* 2 * Copyright (C) 2013 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef ANDROID_INCLUDE_BT_GATT_TYPES_H 18 #define ANDROID_INCLUDE_BT_GATT_TYPES_H 19 20 #include <stdbool.h> 21 #include <stdint.h> 22 23 #include <bluetooth/uuid.h> 24 25 __BEGIN_DECLS 26 27 /** 28 * GATT Service types 29 */ 30 #define BTGATT_SERVICE_TYPE_PRIMARY 0 31 #define BTGATT_SERVICE_TYPE_SECONDARY 1 32 33 /** GATT ID adding instance id tracking to the UUID */ 34 typedef struct { 35 bluetooth::Uuid uuid; 36 uint8_t inst_id; 37 } btgatt_gatt_id_t; 38 39 /** GATT Service ID also identifies the service type (primary/secondary) */ 40 typedef struct { 41 btgatt_gatt_id_t id; 42 uint8_t is_primary; 43 } btgatt_srvc_id_t; 44 45 /** Preferred physical Transport for GATT connection */ 46 typedef enum { 47 GATT_TRANSPORT_AUTO, 48 GATT_TRANSPORT_BREDR, 49 GATT_TRANSPORT_LE 50 } btgatt_transport_t; 51 52 __END_DECLS 53 54 #endif /* ANDROID_INCLUDE_BT_GATT_TYPES_H */ 55