sensord: merge tizen 2.3 sensord into tizen branch
[platform/core/system/sensord.git] / src / libsensord / sensor_geomag.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_GEOMAG_H__
21 #define __SENSOR_GEOMAG_H__
22
23 //! Pre-defined events for the geomagnetic sensor
24 //! Sensor Plugin developer can add more event to their own headers
25
26 #ifdef __cplusplus
27 extern "C"
28 {
29 #endif
30
31 /**
32  * @defgroup SENSOR_GEOMAG Geomagnetic Sensor
33  * @ingroup SENSOR_FRAMEWORK
34  *
35  * These APIs are used to control the Geomagnatic sensor.
36  * @{
37  */
38
39 enum geomag_data_id {
40         GEOMAGNETIC_BASE_DATA_SET               = (GEOMAGNETIC_SENSOR << 16) | 0x0001,
41         GEOMAGNETIC_RAW_DATA_SET                = (GEOMAGNETIC_SENSOR << 16) | 0x0001,
42 };
43
44 enum geomag_evet_type {
45         GEOMAGNETIC_EVENT_RAW_DATA_REPORT_ON_TIME       = (GEOMAGNETIC_SENSOR << 16) | 0x0001,
46         GEOMAGNETIC_EVENT_CALIBRATION_NEEDED                    = (GEOMAGNETIC_SENSOR << 16) | 0x0002,
47         GEOMAGNETIC_EVENT_UNPROCESSED_DATA_REPORT_ON_TIME       = (GEOMAGNETIC_SENSOR << 16) | 0x0003,
48 };
49
50 /**
51  * @}
52  */
53
54 #ifdef __cplusplus
55 }
56 #endif
57
58 #endif
59 //! End of a file