596abae9f585f2ad61126be5c91c2369af4c90ea
[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_data_id {
40         ACCELEROMETER_BASE_DATA_SET                             = (ACCELEROMETER_SENSOR << 16) | 0x0001,
41 };
42
43 enum accelerometer_event_type {
44         ACCELEROMETER_EVENT_RAW_DATA_REPORT_ON_TIME                                     = (ACCELEROMETER_SENSOR << 16) | 0x0001,
45         ACCELEROMETER_EVENT_UNPROCESSED_DATA_REPORT_ON_TIME                     = (ACCELEROMETER_SENSOR << 16) | 0x0002,
46 };
47
48 /**
49  * @}
50  */
51
52 #ifdef __cplusplus
53 }
54 #endif
55
56 #endif
57 //! End of a file