summaryrefslogtreecommitdiff
path: root/include/sensor_motion.h
blob: ec095aab8b71acb3508fee40fdcebe3d5b1dea2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
 *  libslp-sensor
 *
 * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * Contact: JuHyun Kim <jh8212.kim@samsung.com>
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */ 



#ifndef __SAMSUNG_LINUX_SENSOR_MOTION_H__
#define __SAMSUNG_LINUX_SENSOR_MOTION_H__


//! Pre-defined events for the motion sensor
//! Sensor Plugin developer can add more event to their own headers

#ifdef __cplusplus
extern "C"
{
#endif


enum motion_evet_type {		
	MOTION_ENGINE_EVENT_SNAP				= (MOTION_SENSOR<<16) |0x0001,
	MOTION_ENGINE_EVENT_SHAKE				= (MOTION_SENSOR<<16) |0x0002,
	MOTION_ENGINE_EVENT_DOUBLETAP   		= (MOTION_SENSOR<<16) |0x0004,
	MOTION_ENGINE_EVENT_PANNING     		= (MOTION_SENSOR<<16) |0x0008,
	MOTION_ENGINE_EVENT_TOP_TO_BOTTOM       = (MOTION_SENSOR<<16) |0x0010,
};

enum motion_snap_event {
	MOTION_ENGIEN_SNAP_NONE,
	MOTION_ENGIEN_NEGATIVE_SNAP_X,
	MOTION_ENGIEN_POSITIVE_SNAP_X,
	MOTION_ENGIEN_NEGATIVE_SNAP_Y,
	MOTION_ENGIEN_POSITIVE_SNAP_Y,
	MOTION_ENGIEN_NEGATIVE_SNAP_Z,
	MOTION_ENGIEN_POSITIVE_SNAP_Z,
	MOTION_ENGIEN_SNAP_LEFT  = MOTION_ENGIEN_NEGATIVE_SNAP_X,
	MOTION_ENGIEN_SNAP_RIGHT = MOTION_ENGIEN_POSITIVE_SNAP_X,

};

enum motion_shake_event {
	MOTION_ENGIEN_SHAKE_NONE,
	MOTION_ENGIEN_SHAKE_DETECTION,
	MOTION_ENGIEN_SHAKE_CONTINUING,
	MOTION_ENGIEN_SHAKE_FINISH,
	MOTION_ENGINE_SHAKE_BREAK,
};

enum motion_doubletap_event {
	MOTION_ENGIEN_DOUBLTAP_NONE,
	MOTION_ENGIEN_DOUBLTAP_DETECTION,
};

enum motion_top_to_bottom_event {
	MOTION_ENGIEN_TOP_TO_BOTTOM_NONE,
	MOTION_ENGIEN_TOP_TO_BOTTOM_WAIT,
	MOTION_ENGIEN_TOP_TO_BOTTOM_DETECTION,
};

enum motion_property_id {
	MOTION_PROPERTY_UNKNOWN = 0,
	MOTION_PROPERTY_CHECK_ACCEL_SENSOR,
	MOTION_PROPERTY_CHECK_GYRO_SENSOR,
};

/**
 * @}
 */

#ifdef __cplusplus
}
#endif

#endif
//! End of a file