resolved the code rule warnings
[platform/core/connectivity/bluetooth-frwk.git] / bt-oal / hardware / bt_gatt_types.h
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
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  * Buffer sizes for maximum attribute length and maximum read/write
28  * operation buffer size.
29  */
30 #define BTGATT_MAX_ATTR_LEN 600
31
32 /**
33  * GATT Service types
34  */
35 #define BTGATT_SERVICE_TYPE_PRIMARY 0
36 #define BTGATT_SERVICE_TYPE_SECONDARY 1
37
38 /** GATT ID adding instance id tracking to the UUID */
39 typedef struct {
40         bt_uuid_t           uuid;
41         uint8_t             inst_id;
42 } btgatt_gatt_id_t;
43
44 /** GATT Service ID also identifies the service type (primary/secondary) */
45 typedef struct {
46         btgatt_gatt_id_t    id;
47         uint8_t             is_primary;
48 } btgatt_srvc_id_t;
49
50 /** Preferred physical Transport for GATT connection */
51 typedef enum {
52         GATT_TRANSPORT_AUTO,
53         GATT_TRANSPORT_BREDR,
54         GATT_TRANSPORT_LE
55 } btgatt_transport_t;
56
57 __END_DECLS
58
59 #endif /* ANDROID_INCLUDE_BT_GATT_TYPES_H */