Adding AK8975 geo-sensor info in sensors.xml.in required by geo-plugin
[platform/core/system/sensord.git] / src / libsensord / sensor_orientation.h
1 /*
2  * libsensord
3  *
4  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #ifndef _SENSOR_ORIENTATION_H_
21 #define _SENSOR_ORIENTATION_H_
22
23 //! Pre-defined events for the orientation sensor
24 //! Sensor Plugin developer can add more event to their own headers
25
26 #ifdef __cplusplus
27 extern "C"
28 {
29 #endif /*__cplusplus*/
30
31 /**
32  * @defgroup SENSOR_ORIENTATION Orientation Sensor
33  * @ingroup SENSOR_FRAMEWORK
34  *
35  * These APIs are used to control the Orientation sensor.
36  * @{
37  */
38
39 enum orientation_data_id {
40         ORIENTATION_BASE_DATA_SET                               = (ORIENTATION_SENSOR << 16) | 0x0001,
41 };
42
43 enum orientation_event_type {
44         ORIENTATION_EVENT_CALIBRATION_NEEDED                    = (ORIENTATION_SENSOR << 16) | 0x0001,
45         ORIENTATION_EVENT_RAW_DATA_REPORT_ON_TIME               = (ORIENTATION_SENSOR << 16) | 0x0002,
46 };
47
48 /**
49  * @}
50  */
51
52 #ifdef __cplusplus
53 }
54 #endif /*__cplusplus*/
55
56 #endif /*_SENSOR_ORIENTATION_H_*/