blob: e037ddcdbba7b37804279cfda40152e362e96f49 [file] [log] [blame]
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -08001/*
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
18#ifndef ANDROID_INCLUDE_BT_GATT_TYPES_H
19#define ANDROID_INCLUDE_BT_GATT_TYPES_H
20
21#include <stdint.h>
22#include <stdbool.h>
23
24__BEGIN_DECLS
25
26/**
27 * GATT Service types
28 */
29#define BTGATT_SERVICE_TYPE_PRIMARY 0
30#define BTGATT_SERVICE_TYPE_SECONDARY 1
31
Andre Eisenbach02223d12013-07-09 00:02:48 -070032/** GATT ID adding instance id tracking to the UUID */
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080033typedef struct
34{
35 bt_uuid_t uuid;
36 uint8_t inst_id;
Andre Eisenbach02223d12013-07-09 00:02:48 -070037} btgatt_gatt_id_t;
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080038
39/** GATT Service ID also identifies the service type (primary/secondary) */
40typedef struct
41{
Andre Eisenbach02223d12013-07-09 00:02:48 -070042 btgatt_gatt_id_t id;
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080043 uint8_t is_primary;
44} btgatt_srvc_id_t;
45
Ganesh Ganapathi Battaf9f4d102014-04-18 10:02:49 -070046/** Preferred physical Transport for GATT connection */
47typedef enum
48{
49 GATT_TRANSPORT_AUTO,
50 GATT_TRANSPORT_BREDR,
51 GATT_TRANSPORT_LE
52} btgatt_transport_t;
53
Ganesh Ganapathi Battafefb3342013-02-05 15:23:45 -080054__END_DECLS
55
56#endif /* ANDROID_INCLUDE_BT_GATT_TYPES_H */