Home | History | Annotate | Download | only in inc
      1 /*
      2  * Copyright (C) 2016 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #ifndef _SENS_TYPE_H_
     18 #define _SENS_TYPE_H_
     19 
     20 #ifdef __cplusplus
     21 extern "C" {
     22 #endif
     23 
     24 #define SENS_TYPE_INVALID         0
     25 #define SENS_TYPE_ACCEL           1
     26 #define SENS_TYPE_ANY_MOTION      2 //provided by ACCEL, nondiscardable edge trigger
     27 #define SENS_TYPE_NO_MOTION       3 //provided by ACCEL, nondiscardable edge trigger
     28 #define SENS_TYPE_SIG_MOTION      4 //provided by ACCEL, nondiscardable edge trigger
     29 #define SENS_TYPE_FLAT            5
     30 #define SENS_TYPE_GYRO            6
     31 #define SENS_TYPE_GYRO_UNCAL      7
     32 #define SENS_TYPE_MAG             8
     33 #define SENS_TYPE_MAG_UNCAL       9
     34 #define SENS_TYPE_BARO            10
     35 #define SENS_TYPE_TEMP            11
     36 #define SENS_TYPE_ALS             12
     37 #define SENS_TYPE_PROX            13
     38 #define SENS_TYPE_ORIENTATION     14
     39 #define SENS_TYPE_HEARTRATE_ECG   15
     40 #define SENS_TYPE_HEARTRATE_PPG   16
     41 #define SENS_TYPE_GRAVITY         17
     42 #define SENS_TYPE_LINEAR_ACCEL    18
     43 #define SENS_TYPE_ROTATION_VECTOR 19
     44 #define SENS_TYPE_GEO_MAG_ROT_VEC 20
     45 #define SENS_TYPE_GAME_ROT_VECTOR 21
     46 #define SENS_TYPE_STEP_COUNT      22
     47 #define SENS_TYPE_STEP_DETECT     23
     48 #define SENS_TYPE_GESTURE         24
     49 #define SENS_TYPE_TILT            25
     50 #define SENS_TYPE_DOUBLE_TWIST    26
     51 #define SENS_TYPE_DOUBLE_TAP      27
     52 #define SENS_TYPE_WIN_ORIENTATION 28
     53 #define SENS_TYPE_HALL            29
     54 #define SENS_TYPE_ACTIVITY        30
     55 #define SENS_TYPE_VSYNC           31
     56 #define SENS_TYPE_ACCEL_RAW       32
     57 // Values 33-37 are reserved
     58 
     59 #define SENS_TYPE_FIRST_USER      64 // event type necessarily begins with UserSensorEventHdr
     60 #define SENS_TYPE_LAST_USER       128
     61 
     62 #ifdef __cplusplus
     63 }
     64 #endif
     65 
     66 #endif
     67