Removing redundant accelerometer events
[platform/core/system/sensord.git] / src / libsensord / sensor_accel.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_ACCEL_H__
21 #define __SENSOR_ACCEL_H__
22
23 //! Pre-defined events for the accelometer 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_ACCEL Accelerometer Sensor
33  * @ingroup SENSOR_FRAMEWORK
34  *
35  * These APIs are used to control the Accelerometer sensor.
36  * @{
37  */
38
39 enum accelerometer_event_type {
40         ACCELEROMETER_RAW_DATA_EVENT                                    = (ACCELEROMETER_SENSOR << 16) | 0x0001,
41         ACCELEROMETER_UNPROCESSED_DATA_EVENT                    = (ACCELEROMETER_SENSOR << 16) | 0x0002,
42 };
43
44 /**
45  * @}
46  */
47
48 #ifdef __cplusplus
49 }
50 #endif
51
52 #endif
53 //! End of a file