2009-03-04 04:32:14 +01:00
|
|
|
/*
|
2012-11-29 02:21:55 +01:00
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
2009-03-04 04:32:14 +01:00
|
|
|
*
|
|
|
|
* 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 ANDROID_SENSORS_INTERFACE_H
|
|
|
|
#define ANDROID_SENSORS_INTERFACE_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include <hardware/hardware.h>
|
2009-05-22 16:05:48 +02:00
|
|
|
#include <cutils/native_handle.h>
|
2009-03-04 04:32:14 +01:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
2012-11-09 00:57:38 +01:00
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
#define SENSORS_HEADER_VERSION 1
|
|
|
|
#define SENSORS_MODULE_API_VERSION_0_1 HARDWARE_MODULE_API_VERSION(0, 1)
|
|
|
|
#define SENSORS_DEVICE_API_VERSION_0_1 HARDWARE_DEVICE_API_VERSION_2(0, 1, SENSORS_HEADER_VERSION)
|
2012-11-29 02:21:55 +01:00
|
|
|
#define SENSORS_DEVICE_API_VERSION_1_0 HARDWARE_DEVICE_API_VERSION_2(1, 0, SENSORS_HEADER_VERSION)
|
2013-07-25 06:07:40 +02:00
|
|
|
#define SENSORS_DEVICE_API_VERSION_1_1 HARDWARE_DEVICE_API_VERSION_2(1, 1, SENSORS_HEADER_VERSION)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSORS_DEVICE_API_VERSION_1_2 HARDWARE_DEVICE_API_VERSION_2(1, 2, SENSORS_HEADER_VERSION)
|
2014-03-01 03:46:19 +01:00
|
|
|
#define SENSORS_DEVICE_API_VERSION_1_3 HARDWARE_DEVICE_API_VERSION_2(1, 3, SENSORS_HEADER_VERSION)
|
2012-11-09 00:57:38 +01:00
|
|
|
|
2013-12-19 18:58:28 +01:00
|
|
|
/**
|
|
|
|
* Please see the Sensors section of source.android.com for an
|
|
|
|
* introduction to and detailed descriptions of Android sensor types:
|
|
|
|
* http://source.android.com/devices/sensors/index.html
|
|
|
|
*/
|
|
|
|
|
2009-03-04 04:32:14 +01:00
|
|
|
/**
|
|
|
|
* The id of this module
|
|
|
|
*/
|
|
|
|
#define SENSORS_HARDWARE_MODULE_ID "sensors"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Name of the sensors device to open
|
|
|
|
*/
|
2010-07-09 01:44:54 +02:00
|
|
|
#define SENSORS_HARDWARE_POLL "poll"
|
2009-03-04 04:32:14 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles must be higher than SENSORS_HANDLE_BASE and must be unique.
|
|
|
|
* A Handle identifies a given sensors. The handle is used to activate
|
|
|
|
* and/or deactivate sensors.
|
|
|
|
* In this version of the API there can only be 256 handles.
|
|
|
|
*/
|
|
|
|
#define SENSORS_HANDLE_BASE 0
|
|
|
|
#define SENSORS_HANDLE_BITS 8
|
|
|
|
#define SENSORS_HANDLE_COUNT (1<<SENSORS_HANDLE_BITS)
|
|
|
|
|
|
|
|
|
2012-11-29 02:21:55 +01:00
|
|
|
/*
|
2014-03-01 03:46:19 +01:00
|
|
|
* **** Deprecated *****
|
2012-11-29 02:21:55 +01:00
|
|
|
* flags for (*batch)()
|
|
|
|
* Availability: SENSORS_DEVICE_API_VERSION_1_0
|
2014-03-01 03:46:19 +01:00
|
|
|
* see (*batch)() documentation for details.
|
|
|
|
* Deprecated as of SENSORS_DEVICE_API_VERSION_1_3.
|
|
|
|
* WAKE_UP_* sensors replace WAKE_UPON_FIFO_FULL concept.
|
2012-11-29 02:21:55 +01:00
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
SENSORS_BATCH_DRY_RUN = 0x00000001,
|
|
|
|
SENSORS_BATCH_WAKE_UPON_FIFO_FULL = 0x00000002
|
|
|
|
};
|
|
|
|
|
2013-07-25 06:07:40 +02:00
|
|
|
/*
|
|
|
|
* what field for meta_data_event_t
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
/* a previous flush operation has completed */
|
2013-08-07 05:33:38 +02:00
|
|
|
META_DATA_FLUSH_COMPLETE = 1,
|
|
|
|
META_DATA_VERSION /* always last, leave auto-assigned */
|
2013-07-25 06:07:40 +02:00
|
|
|
};
|
|
|
|
|
2014-04-08 00:46:01 +02:00
|
|
|
/*
|
|
|
|
* The permission to use for body sensors (like heart rate monitors).
|
|
|
|
* See sensor types for more details on what sensors should require this
|
|
|
|
* permission.
|
|
|
|
*/
|
|
|
|
#define SENSOR_PERMISSION_BODY_SENSORS "android.permission.BODY_SENSORS"
|
|
|
|
|
2014-03-01 03:46:19 +01:00
|
|
|
/*
|
|
|
|
* Availability: SENSORS_DEVICE_API_VERSION_1_3
|
|
|
|
* Sensor flags used in sensor_t.flags.
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
/*
|
|
|
|
* Whether this sensor wakes up the AP from suspend mode when data is available.
|
|
|
|
*/
|
|
|
|
SENSOR_FLAG_WAKE_UP = 1U << 0
|
|
|
|
};
|
|
|
|
|
2012-11-29 02:21:55 +01:00
|
|
|
/*
|
|
|
|
* Sensor type
|
|
|
|
*
|
|
|
|
* Each sensor has a type which defines what this sensor measures and how
|
2013-12-19 18:58:28 +01:00
|
|
|
* measures are reported. See the Base sensors and Composite sensors lists
|
|
|
|
* for complete descriptions:
|
|
|
|
* http://source.android.com/devices/sensors/base_triggers.html
|
|
|
|
* http://source.android.com/devices/sensors/composite_sensors.html
|
2013-08-19 23:34:47 +02:00
|
|
|
*
|
|
|
|
* Device manufacturers (OEMs) can define their own sensor types, for
|
|
|
|
* their private use by applications or services provided by them. Such
|
|
|
|
* sensor types are specific to an OEM and can't be exposed in the SDK.
|
|
|
|
* These types must start at SENSOR_TYPE_DEVICE_PRIVATE_BASE.
|
2014-04-08 00:46:01 +02:00
|
|
|
*
|
|
|
|
* All sensors defined outside of the device private range must correspond to
|
|
|
|
* a type defined in this file, and must satisfy the characteristics listed in
|
|
|
|
* the description of the sensor type.
|
|
|
|
*
|
|
|
|
* Starting with version SENSORS_DEVICE_API_VERSION_1_2, each sensor also
|
|
|
|
* has a stringType.
|
|
|
|
* - StringType of sensors inside of the device private range MUST be prefixed
|
|
|
|
* by the sensor provider's or OEM reverse domain name. In particular, they
|
|
|
|
* cannot use the "android.sensor" prefix.
|
|
|
|
* - StringType of sensors outside of the device private range MUST correspond
|
|
|
|
* to the one defined in this file (starting with "android.sensor").
|
|
|
|
* For example, accelerometers must have
|
|
|
|
* type=SENSOR_TYPE_ACCELEROMETER and
|
|
|
|
* stringType=SENSOR_STRING_TYPE_ACCELEROMETER
|
|
|
|
*
|
|
|
|
* When android introduces a new sensor type that can replace an OEM-defined
|
|
|
|
* sensor type, the OEM must use the official sensor type and stringType on
|
|
|
|
* versions of the HAL that support this new official sensor type.
|
|
|
|
*
|
|
|
|
* Example (made up): Suppose Google's Glass team wants to surface a sensor
|
|
|
|
* detecting that Glass is on a head.
|
|
|
|
* - Such a sensor is not officially supported in android KitKat
|
|
|
|
* - Glass devices launching on KitKat can implement a sensor with
|
|
|
|
* type = 0x10001 and stringType = "com.google.glass.onheaddetector"
|
|
|
|
* - In L android release, if android decides to define
|
|
|
|
* SENSOR_TYPE_ON_HEAD_DETECTOR and STRING_SENSOR_TYPE_ON_HEAD_DETECTOR,
|
|
|
|
* those types should replace the Glass-team-specific types in all future
|
|
|
|
* launches.
|
|
|
|
* - When launching glass on the L release, Google should now use the official
|
|
|
|
* type (SENSOR_TYPE_ON_HEAD_DETECTOR) and stringType.
|
|
|
|
* - This way, all applications can now use this sensor.
|
2013-08-19 23:34:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Base for device manufacturers private sensor types.
|
|
|
|
* These sensor types can't be exposed in the SDK.
|
2012-11-29 02:21:55 +01:00
|
|
|
*/
|
2013-08-19 23:34:47 +02:00
|
|
|
#define SENSOR_TYPE_DEVICE_PRIVATE_BASE 0x10000
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2013-07-25 06:07:40 +02:00
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_META_DATA
|
|
|
|
* trigger-mode: n/a
|
|
|
|
* wake-up sensor: n/a
|
|
|
|
*
|
|
|
|
* NO SENSOR OF THAT TYPE MUST BE RETURNED (*get_sensors_list)()
|
|
|
|
*
|
|
|
|
* SENSOR_TYPE_META_DATA is a special token used to populate the
|
|
|
|
* sensors_meta_data_event structure. It doesn't correspond to a physical
|
|
|
|
* sensor. sensors_meta_data_event are special, they exist only inside
|
|
|
|
* the HAL and are generated spontaneously, as opposed to be related to
|
|
|
|
* a physical sensor.
|
|
|
|
*
|
2013-08-07 05:33:38 +02:00
|
|
|
* sensors_meta_data_event_t.version must be META_DATA_VERSION
|
|
|
|
* sensors_meta_data_event_t.sensor must be 0
|
|
|
|
* sensors_meta_data_event_t.type must be SENSOR_TYPE_META_DATA
|
|
|
|
* sensors_meta_data_event_t.reserved must be 0
|
|
|
|
* sensors_meta_data_event_t.timestamp must be 0
|
2013-07-25 06:07:40 +02:00
|
|
|
*
|
|
|
|
* The payload is a meta_data_event_t, where:
|
|
|
|
* meta_data_event_t.what can take the following values:
|
|
|
|
*
|
|
|
|
* META_DATA_FLUSH_COMPLETE
|
|
|
|
* This event indicates that a previous (*flush)() call has completed for the sensor
|
|
|
|
* handle specified in meta_data_event_t.sensor.
|
|
|
|
* see (*flush)() for more details
|
|
|
|
*
|
|
|
|
* All other values for meta_data_event_t.what are reserved and
|
|
|
|
* must not be used.
|
|
|
|
*
|
|
|
|
*/
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_TYPE_META_DATA (0)
|
2013-07-25 06:07:40 +02:00
|
|
|
|
2012-11-09 00:57:38 +01:00
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_ACCELEROMETER
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2012-11-09 00:57:38 +01:00
|
|
|
*
|
|
|
|
* All values are in SI units (m/s^2) and measure the acceleration of the
|
|
|
|
* device minus the force of gravity.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_ACCELEROMETER (1)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_ACCELEROMETER "android.sensor.accelerometer"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_GEOMAGNETIC_FIELD
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2009-03-04 04:32:14 +01:00
|
|
|
*
|
2012-11-09 00:57:38 +01:00
|
|
|
* All values are in micro-Tesla (uT) and measure the geomagnetic
|
|
|
|
* field in the X, Y and Z axis.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_GEOMAGNETIC_FIELD (2)
|
|
|
|
#define SENSOR_TYPE_MAGNETIC_FIELD SENSOR_TYPE_GEOMAGNETIC_FIELD
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_MAGNETIC_FIELD "android.sensor.magnetic_field"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
2011-11-08 06:32:34 +01:00
|
|
|
* SENSOR_TYPE_ORIENTATION
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2013-12-19 18:58:28 +01:00
|
|
|
*
|
2009-03-04 04:32:14 +01:00
|
|
|
* All values are angles in degrees.
|
2013-12-19 18:58:28 +01:00
|
|
|
*
|
2010-07-23 02:11:50 +02:00
|
|
|
* Orientation sensors return sensor events for all 3 axes at a constant
|
|
|
|
* rate defined by setDelay().
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_ORIENTATION (3)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_ORIENTATION "android.sensor.orientation"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
2011-11-08 06:32:34 +01:00
|
|
|
* SENSOR_TYPE_GYROSCOPE
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2011-11-08 06:32:34 +01:00
|
|
|
*
|
2010-07-20 04:12:15 +02:00
|
|
|
* All values are in radians/second and measure the rate of rotation
|
2013-12-19 18:58:28 +01:00
|
|
|
* around the X, Y and Z axis.
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_GYROSCOPE (4)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_GYROSCOPE "android.sensor.gyroscope"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
2011-11-08 06:32:34 +01:00
|
|
|
* SENSOR_TYPE_LIGHT
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: on-change
|
|
|
|
* wake-up sensor: no
|
2009-11-03 16:29:50 +01:00
|
|
|
*
|
|
|
|
* The light sensor value is returned in SI lux units.
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_LIGHT (5)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_LIGHT "android.sensor.light"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
2011-11-08 06:32:34 +01:00
|
|
|
* SENSOR_TYPE_PRESSURE
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2010-07-30 00:22:30 +02:00
|
|
|
*
|
2011-11-08 06:32:34 +01:00
|
|
|
* The pressure sensor return the athmospheric pressure in hectopascal (hPa)
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_PRESSURE (6)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_PRESSURE "android.sensor.pressure"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/* SENSOR_TYPE_TEMPERATURE is deprecated in the HAL */
|
|
|
|
#define SENSOR_TYPE_TEMPERATURE (7)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_TEMPERATURE "android.sensor.temperature"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_PROXIMITY
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: on-change
|
2014-03-01 03:46:19 +01:00
|
|
|
* wake-up sensor: yes (set SENSOR_FLAG_WAKE_UP flag)
|
2010-07-30 00:22:30 +02:00
|
|
|
*
|
2013-12-19 18:58:28 +01:00
|
|
|
* The value corresponds to the distance to the nearest object in centimeters.
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_PROXIMITY (8)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_PROXIMITY "android.sensor.proximity"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
2011-11-08 06:32:34 +01:00
|
|
|
* SENSOR_TYPE_GRAVITY
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2010-08-12 00:10:10 +02:00
|
|
|
*
|
2011-11-08 06:32:34 +01:00
|
|
|
* A gravity output indicates the direction of and magnitude of gravity in
|
2013-12-19 18:58:28 +01:00
|
|
|
* the devices's coordinates.
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_GRAVITY (9)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_GRAVITY "android.sensor.gravity"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
2011-11-08 06:32:34 +01:00
|
|
|
* SENSOR_TYPE_LINEAR_ACCELERATION
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2010-08-12 00:10:10 +02:00
|
|
|
*
|
2011-11-08 06:32:34 +01:00
|
|
|
* Indicates the linear acceleration of the device in device coordinates,
|
|
|
|
* not including gravity.
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_LINEAR_ACCELERATION (10)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_LINEAR_ACCELERATION "android.sensor.linear_acceleration"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
2011-11-08 06:32:34 +01:00
|
|
|
* SENSOR_TYPE_ROTATION_VECTOR
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2010-11-23 00:55:32 +01:00
|
|
|
*
|
2013-03-28 02:59:10 +01:00
|
|
|
* The rotation vector symbolizes the orientation of the device relative to the
|
2013-12-19 18:58:28 +01:00
|
|
|
* East-North-Up coordinates frame.
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_ROTATION_VECTOR (11)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_ROTATION_VECTOR "android.sensor.rotation_vector"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
2011-11-08 06:32:34 +01:00
|
|
|
* SENSOR_TYPE_RELATIVE_HUMIDITY
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: on-change
|
|
|
|
* wake-up sensor: no
|
2010-12-29 17:00:33 +01:00
|
|
|
*
|
|
|
|
* A relative humidity sensor measures relative ambient air humidity and
|
|
|
|
* returns a value in percent.
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_RELATIVE_HUMIDITY (12)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_RELATIVE_HUMIDITY "android.sensor.relative_humidity"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
2011-11-08 06:32:34 +01:00
|
|
|
* SENSOR_TYPE_AMBIENT_TEMPERATURE
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: on-change
|
|
|
|
* wake-up sensor: no
|
2011-03-23 02:42:03 +01:00
|
|
|
*
|
|
|
|
* The ambient (room) temperature in degree Celsius.
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_AMBIENT_TEMPERATURE (13)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_AMBIENT_TEMPERATURE "android.sensor.ambient_temperature"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2012-11-09 00:57:38 +01:00
|
|
|
*
|
2013-02-27 04:17:20 +01:00
|
|
|
* Similar to SENSOR_TYPE_MAGNETIC_FIELD, but the hard iron calibration is
|
|
|
|
* reported separately instead of being included in the measurement.
|
2009-03-04 04:32:14 +01:00
|
|
|
*/
|
2012-11-09 00:57:38 +01:00
|
|
|
#define SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED (14)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_MAGNETIC_FIELD_UNCALIBRATED "android.sensor.magnetic_field_uncalibrated"
|
2010-07-20 04:12:15 +02:00
|
|
|
|
2012-11-09 00:57:38 +01:00
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_GAME_ROTATION_VECTOR
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2012-11-09 00:57:38 +01:00
|
|
|
*
|
2013-02-27 04:17:20 +01:00
|
|
|
* Similar to SENSOR_TYPE_ROTATION_VECTOR, but not using the geomagnetic
|
2013-12-19 18:58:28 +01:00
|
|
|
* field.
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_GAME_ROTATION_VECTOR (15)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_GAME_ROTATION_VECTOR "android.sensor.game_rotation_vector"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_GYROSCOPE_UNCALIBRATED
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
2012-11-09 00:57:38 +01:00
|
|
|
*
|
|
|
|
* All values are in radians/second and measure the rate of rotation
|
2013-12-19 18:58:28 +01:00
|
|
|
* around the X, Y and Z axis.
|
2012-11-09 00:57:38 +01:00
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_GYROSCOPE_UNCALIBRATED (16)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_GYROSCOPE_UNCALIBRATED "android.sensor.gyroscope_uncalibrated"
|
2012-11-09 00:57:38 +01:00
|
|
|
|
2012-11-29 02:21:55 +01:00
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_SIGNIFICANT_MOTION
|
|
|
|
* trigger-mode: one-shot
|
2014-03-01 03:46:19 +01:00
|
|
|
* wake-up sensor: yes (set SENSOR_FLAG_WAKE_UP flag)
|
2012-11-29 02:21:55 +01:00
|
|
|
*
|
|
|
|
* A sensor of this type triggers an event each time significant motion
|
|
|
|
* is detected and automatically disables itself.
|
|
|
|
* The only allowed value to return is 1.0.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_SIGNIFICANT_MOTION (17)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_SIGNIFICANT_MOTION "android.sensor.significant_motion"
|
2012-11-29 02:21:55 +01:00
|
|
|
|
|
|
|
/*
|
2013-01-29 02:54:41 +01:00
|
|
|
* SENSOR_TYPE_STEP_DETECTOR
|
2012-11-29 02:21:55 +01:00
|
|
|
* trigger-mode: special
|
|
|
|
* wake-up sensor: no
|
|
|
|
*
|
|
|
|
* A sensor of this type triggers an event each time a step is taken
|
2013-12-19 18:58:28 +01:00
|
|
|
* by the user. The only allowed value to return is 1.0 and an event
|
|
|
|
* is generated for each step.
|
2012-11-29 02:21:55 +01:00
|
|
|
*/
|
|
|
|
|
2013-01-29 02:54:41 +01:00
|
|
|
#define SENSOR_TYPE_STEP_DETECTOR (18)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_STEP_DETECTOR "android.sensor.step_detector"
|
2012-11-29 02:21:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_STEP_COUNTER
|
|
|
|
* trigger-mode: on-change
|
|
|
|
* wake-up sensor: no
|
|
|
|
*
|
|
|
|
* A sensor of this type returns the number of steps taken by the user since
|
2013-01-30 00:52:10 +01:00
|
|
|
* the last reboot while activated. The value is returned as a uint64_t and is
|
2013-07-10 23:08:40 +02:00
|
|
|
* reset to zero only on a system / android reboot.
|
2012-11-29 02:21:55 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_STEP_COUNTER (19)
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_STRING_TYPE_STEP_COUNTER "android.sensor.step_counter"
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2013-02-27 04:17:20 +01:00
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR
|
|
|
|
* trigger-mode: continuous
|
|
|
|
* wake-up sensor: no
|
|
|
|
*
|
|
|
|
* Similar to SENSOR_TYPE_ROTATION_VECTOR, but using a magnetometer instead
|
|
|
|
* of using a gyroscope.
|
|
|
|
*/
|
2014-04-08 00:46:01 +02:00
|
|
|
#define SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR (20)
|
|
|
|
#define SENSOR_STRING_TYPE_GEOMAGNETIC_ROTATION_VECTOR "android.sensor.geomagnetic_rotation_vector"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_HEART_RATE
|
|
|
|
* trigger-mode: on-change
|
|
|
|
* wake-up sensor: no
|
|
|
|
*
|
|
|
|
* A sensor of this type returns the current heart rate if activated.
|
|
|
|
* The value is returned as a float which represents the heart rate in beats
|
|
|
|
* per minute (BPM).
|
|
|
|
* When the sensor cannot measure the heart rate, the returned value must be 0.
|
|
|
|
* sensor_t.requiredPermission must be set to SENSOR_PERMISSION_BODY_SENSORS.
|
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_HEART_RATE (21)
|
|
|
|
#define SENSOR_STRING_TYPE_HEART_RATE "android.sensor.heart_rate"
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2014-03-01 03:46:19 +01:00
|
|
|
/*
|
|
|
|
* SENSOR_TYPE_NON_WAKE_UP_PROXIMITY_SENSOR
|
|
|
|
* Same as proximity_sensor but does not wake up the AP from suspend mode.
|
|
|
|
* wake-up sensor: no
|
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_NON_WAKE_UP_PROXIMITY_SENSOR (22)
|
|
|
|
#define SENSOR_STRING_TYPE_NON_WAKE_UP_PROXIMITY_SENSOR "android.sensor.non_wake_up_proximity_sensor"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The sensors below are wake_up variants of the base sensor types defined
|
|
|
|
* above. When registered in batch mode, these sensors will wake up the AP when
|
|
|
|
* their FIFOs are full. A separate FIFO has to be maintained for wake up
|
|
|
|
* sensors and non wake up sensors. The non wake-up sensors need to overwrite
|
|
|
|
* their FIFOs when they are full till the AP wakes up and the wake-up sensors
|
|
|
|
* will wake-up the AP when their FIFOs are full without losing events.
|
|
|
|
*
|
|
|
|
* Define these sensors only if:
|
|
|
|
* 1) batching is supported.
|
|
|
|
* 2) wake-up and non wake-up variants of each sensor can be activated at
|
|
|
|
* different rates.
|
|
|
|
*
|
|
|
|
* wake-up sensor: yes
|
|
|
|
* Set SENSOR_FLAG_WAKE_UP flag for all these sensors.
|
|
|
|
*/
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_ACCELEROMETER (23)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_ACCELEROMETER "android.sensor.wake_up_accelerometer"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_MAGNETIC_FIELD (24)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_MAGNETIC_FIELD "android.sensor.wake_up_magnetic_field"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_ORIENTATION (25)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_ORIENTATION "android.sensor.wake_up_orientation"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_GYROSCOPE (26)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_GYROSCOPE "android.sensor.wake_up_gyroscope"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_LIGHT (27)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_LIGHT "android.sensor.wake_up_light"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_PRESSURE (28)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_PRESSURE "android.sensor.wake_up_pressure"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_GRAVITY (29)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_GRAVITY "android.sensor.wake_up_gravity"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_LINEAR_ACCELERATION (30)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_LINEAR_ACCELERATION "android.sensor.wake_up_linear_acceleration"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_ROTATION_VECTOR (31)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_ROTATION_VECTOR "android.sensor.wake_up_rotation_vector"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_RELATIVE_HUMIDITY (32)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_RELATIVE_HUMIDITY "android.sensor.wake_up_relative_humidity"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_AMBIENT_TEMPERATURE (33)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_AMBIENT_TEMPERATURE "android.sensor.wake_up_ambient_temperature"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_MAGNETIC_FIELD_UNCALIBRATED (34)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_MAGNETIC_FIELD_UNCALIBRATED "android.sensor.wake_up_magnetic_field_uncalibrated"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_GAME_ROTATION_VECTOR (35)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_GAME_ROTATION_VECTOR "android.sensor.wake_up_game_rotation_vector"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_GYROSCOPE_UNCALIBRATED (36)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_GYROSCOPE_UNCALIBRATED "android.sensor.wake_up_gyroscope_uncalibrated"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_STEP_DETECTOR (37)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_STEP_DETECTOR "android.sensor.wake_up_step_detector"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_STEP_COUNTER (38)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_STEP_COUNTER "android.sensor.wake_up_step_counter"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_GEOMAGNETIC_ROTATION_VECTOR (39)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_GEOMAGNETIC_ROTATION_VECTOR "android.sensor.wake_up_geomagnetic_rotation_vector"
|
|
|
|
|
|
|
|
#define SENSOR_TYPE_WAKE_UP_HEART_RATE (40)
|
|
|
|
#define SENSOR_STRING_TYPE_WAKE_UP_HEART_RATE "android.sensor.wake_up_heart_rate"
|
|
|
|
|
2012-11-09 00:57:38 +01:00
|
|
|
/**
|
|
|
|
* Values returned by the accelerometer in various locations in the universe.
|
|
|
|
* all values are in SI units (m/s^2)
|
|
|
|
*/
|
|
|
|
#define GRAVITY_SUN (275.0f)
|
|
|
|
#define GRAVITY_EARTH (9.80665f)
|
|
|
|
|
|
|
|
/** Maximum magnetic field on Earth's surface */
|
|
|
|
#define MAGNETIC_FIELD_EARTH_MAX (60.0f)
|
|
|
|
|
|
|
|
/** Minimum magnetic field on Earth's surface */
|
|
|
|
#define MAGNETIC_FIELD_EARTH_MIN (30.0f)
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* status of orientation sensor
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SENSOR_STATUS_UNRELIABLE 0
|
|
|
|
#define SENSOR_STATUS_ACCURACY_LOW 1
|
|
|
|
#define SENSOR_STATUS_ACCURACY_MEDIUM 2
|
|
|
|
#define SENSOR_STATUS_ACCURACY_HIGH 3
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* sensor event data
|
|
|
|
*/
|
2009-03-04 04:32:14 +01:00
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
float v[3];
|
|
|
|
struct {
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
float z;
|
|
|
|
};
|
|
|
|
struct {
|
|
|
|
float azimuth;
|
|
|
|
float pitch;
|
|
|
|
float roll;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
int8_t status;
|
|
|
|
uint8_t reserved[3];
|
|
|
|
} sensors_vec_t;
|
|
|
|
|
2013-02-27 04:17:20 +01:00
|
|
|
/**
|
|
|
|
* uncalibrated gyroscope and magnetometer event data
|
|
|
|
*/
|
|
|
|
typedef struct {
|
2013-03-28 02:59:10 +01:00
|
|
|
union {
|
|
|
|
float uncalib[3];
|
|
|
|
struct {
|
|
|
|
float x_uncalib;
|
|
|
|
float y_uncalib;
|
|
|
|
float z_uncalib;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
union {
|
|
|
|
float bias[3];
|
|
|
|
struct {
|
|
|
|
float x_bias;
|
|
|
|
float y_bias;
|
|
|
|
float z_bias;
|
|
|
|
};
|
|
|
|
};
|
2013-02-27 04:17:20 +01:00
|
|
|
} uncalibrated_event_t;
|
|
|
|
|
2013-07-25 06:07:40 +02:00
|
|
|
typedef struct meta_data_event {
|
|
|
|
int32_t what;
|
|
|
|
int32_t sensor;
|
|
|
|
} meta_data_event_t;
|
|
|
|
|
2010-07-16 03:29:03 +02:00
|
|
|
/**
|
|
|
|
* Union of the various types of sensor data
|
|
|
|
* that can be returned.
|
|
|
|
*/
|
|
|
|
typedef struct sensors_event_t {
|
|
|
|
/* must be sizeof(struct sensors_event_t) */
|
|
|
|
int32_t version;
|
|
|
|
|
|
|
|
/* sensor identifier */
|
|
|
|
int32_t sensor;
|
|
|
|
|
|
|
|
/* sensor type */
|
|
|
|
int32_t type;
|
|
|
|
|
|
|
|
/* reserved */
|
|
|
|
int32_t reserved0;
|
|
|
|
|
|
|
|
/* time is in nanosecond */
|
|
|
|
int64_t timestamp;
|
|
|
|
|
|
|
|
union {
|
2013-07-08 23:00:54 +02:00
|
|
|
union {
|
|
|
|
float data[16];
|
2010-07-16 03:29:03 +02:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* acceleration values are in meter per second per second (m/s^2) */
|
|
|
|
sensors_vec_t acceleration;
|
2010-07-16 03:29:03 +02:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* magnetic vector values are in micro-Tesla (uT) */
|
|
|
|
sensors_vec_t magnetic;
|
2010-07-16 03:29:03 +02:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* orientation values are in degrees */
|
|
|
|
sensors_vec_t orientation;
|
2010-07-16 03:29:03 +02:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* gyroscope values are in rad/s */
|
|
|
|
sensors_vec_t gyro;
|
2010-08-12 00:10:10 +02:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* temperature is in degrees centigrade (Celsius) */
|
|
|
|
float temperature;
|
2010-07-16 03:29:03 +02:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* distance in centimeters */
|
|
|
|
float distance;
|
2010-07-16 03:29:03 +02:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* light in SI lux units */
|
|
|
|
float light;
|
2010-07-30 00:22:30 +02:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* pressure in hectopascal (hPa) */
|
|
|
|
float pressure;
|
2010-12-29 17:00:33 +01:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* relative humidity in percent */
|
|
|
|
float relative_humidity;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* uncalibrated gyroscope values are in rad/s */
|
|
|
|
uncalibrated_event_t uncalibrated_gyro;
|
2013-02-27 04:17:20 +01:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* uncalibrated magnetometer values are in micro-Teslas */
|
|
|
|
uncalibrated_event_t uncalibrated_magnetic;
|
2013-07-25 06:07:40 +02:00
|
|
|
|
2014-04-08 00:46:01 +02:00
|
|
|
/* heart rate in bpm */
|
|
|
|
float heart_rate;
|
|
|
|
|
2013-07-25 06:07:40 +02:00
|
|
|
/* this is a special event. see SENSOR_TYPE_META_DATA above.
|
|
|
|
* sensors_meta_data_event_t events are all reported with a type of
|
|
|
|
* SENSOR_TYPE_META_DATA. The handle is ignored and must be zero.
|
|
|
|
*/
|
|
|
|
meta_data_event_t meta_data;
|
2013-07-08 23:00:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
|
|
|
uint64_t data[8];
|
2013-02-27 04:17:20 +01:00
|
|
|
|
2013-07-08 23:00:54 +02:00
|
|
|
/* step-counter */
|
|
|
|
uint64_t step_counter;
|
|
|
|
} u64;
|
2010-07-16 03:29:03 +02:00
|
|
|
};
|
2014-03-01 03:46:19 +01:00
|
|
|
|
|
|
|
/* Reserved flags for internal use. Set to zero. */
|
|
|
|
uint32_t flags;
|
|
|
|
|
|
|
|
uint32_t reserved1[3];
|
2010-07-16 03:29:03 +02:00
|
|
|
} sensors_event_t;
|
|
|
|
|
|
|
|
|
2013-07-25 06:07:40 +02:00
|
|
|
/* see SENSOR_TYPE_META_DATA */
|
|
|
|
typedef sensors_event_t sensors_meta_data_event_t;
|
|
|
|
|
2010-07-16 03:29:03 +02:00
|
|
|
|
2009-03-04 04:32:14 +01:00
|
|
|
struct sensor_t;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Every hardware module must have a data structure named HAL_MODULE_INFO_SYM
|
|
|
|
* and the fields of this data structure must begin with hw_module_t
|
|
|
|
* followed by module specific information.
|
|
|
|
*/
|
|
|
|
struct sensors_module_t {
|
|
|
|
struct hw_module_t common;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enumerate all available sensors. The list is returned in "list".
|
|
|
|
* @return number of sensors in the list
|
|
|
|
*/
|
|
|
|
int (*get_sensors_list)(struct sensors_module_t* module,
|
|
|
|
struct sensor_t const** list);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct sensor_t {
|
2013-01-30 00:52:10 +01:00
|
|
|
|
|
|
|
/* Name of this sensor.
|
|
|
|
* All sensors of the same "type" must have a different "name".
|
|
|
|
*/
|
2009-03-04 04:32:14 +01:00
|
|
|
const char* name;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2009-03-04 04:32:14 +01:00
|
|
|
/* vendor of the hardware part */
|
|
|
|
const char* vendor;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2011-11-08 06:32:34 +01:00
|
|
|
/* version of the hardware part + driver. The value of this field
|
|
|
|
* must increase when the driver is updated in a way that changes the
|
|
|
|
* output of this sensor. This is important for fused sensors when the
|
|
|
|
* fusion algorithm is updated.
|
2014-03-01 03:46:19 +01:00
|
|
|
*/
|
2009-03-04 04:32:14 +01:00
|
|
|
int version;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
|
|
|
/* handle that identifies this sensors. This handle is used to reference
|
|
|
|
* this sensor throughout the HAL API.
|
2009-03-04 04:32:14 +01:00
|
|
|
*/
|
|
|
|
int handle;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2009-03-04 04:32:14 +01:00
|
|
|
/* this sensor's type. */
|
|
|
|
int type;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
|
|
|
/* maximum range of this sensor's value in SI units */
|
2009-03-04 04:32:14 +01:00
|
|
|
float maxRange;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2009-03-04 04:32:14 +01:00
|
|
|
/* smallest difference between two values reported by this sensor */
|
|
|
|
float resolution;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2009-03-04 04:32:14 +01:00
|
|
|
/* rough estimate of this sensor's power consumption in mA */
|
|
|
|
float power;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
|
|
|
/* this value depends on the trigger mode:
|
|
|
|
*
|
|
|
|
* continuous: minimum sample period allowed in microseconds
|
|
|
|
* on-change : 0
|
|
|
|
* one-shot :-1
|
|
|
|
* special : 0, unless otherwise noted
|
|
|
|
*/
|
2010-07-30 00:33:22 +02:00
|
|
|
int32_t minDelay;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2013-07-25 06:07:40 +02:00
|
|
|
/* number of events reserved for this sensor in the batch mode FIFO.
|
|
|
|
* If there is a dedicated FIFO for this sensor, then this is the
|
|
|
|
* size of this FIFO. If the FIFO is shared with other sensors,
|
|
|
|
* this is the size reserved for that sensor and it can be zero.
|
|
|
|
*/
|
|
|
|
uint32_t fifoReservedEventCount;
|
|
|
|
|
|
|
|
/* maximum number of events of this sensor that could be batched.
|
|
|
|
* This is especially relevant when the FIFO is shared between
|
|
|
|
* several sensors; this value is then set to the size of that FIFO.
|
|
|
|
*/
|
|
|
|
uint32_t fifoMaxEventCount;
|
|
|
|
|
2014-04-08 00:46:01 +02:00
|
|
|
/* type of this sensor as a string. Set to corresponding
|
|
|
|
* SENSOR_STRING_TYPE_*.
|
|
|
|
* When defining an OEM specific sensor or sensor manufacturer specific
|
|
|
|
* sensor, use your reserve domain name as a prefix.
|
|
|
|
* ex: com.google.glass.onheaddetector
|
|
|
|
* For sensors of known type, the android framework might overwrite this
|
|
|
|
* string automatically.
|
|
|
|
*/
|
|
|
|
const char* stringType;
|
|
|
|
|
|
|
|
/* permission required to see this sensor, register to it and receive data.
|
|
|
|
* Set to "" if no permission is required. Some sensor types like the
|
|
|
|
* heart rate monitor have a mandatory require_permission.
|
|
|
|
* For sensors that always require a specific permission, like the heart
|
|
|
|
* rate monitor, the android framework might overwrite this string
|
|
|
|
* automatically.
|
|
|
|
*/
|
|
|
|
const char* requiredPermission;
|
|
|
|
|
2014-03-01 03:46:19 +01:00
|
|
|
/* This value is defined only for continuous mode sensors. It is the delay between two
|
|
|
|
* sensor events corresponding to the lowest frequency that this sensor supports. When
|
|
|
|
* lower frequencies are requested through batch()/setDelay() the events will be generated
|
|
|
|
* at this frequency instead. It can be used by the framework or applications to estimate
|
|
|
|
* when the batch FIFO may be full.
|
|
|
|
* NOTE: period_ns is in nanoseconds where as maxDelay/minDelay are in microseconds.
|
|
|
|
* continuous: maximum sampling period allowed in microseconds.
|
|
|
|
* on-change, one-shot, special : -1
|
|
|
|
* Availability: SENSORS_DEVICE_API_VERSION_1_3
|
|
|
|
*/
|
|
|
|
#ifdef __LP64__
|
|
|
|
int64_t maxDelay;
|
|
|
|
#else
|
|
|
|
int32_t maxDelay;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Flags for sensor. See SENSOR_FLAG_* above. */
|
|
|
|
#ifdef __LP64__
|
|
|
|
uint64_t flags;
|
|
|
|
#else
|
|
|
|
uint32_t flags;
|
|
|
|
#endif
|
|
|
|
|
2009-03-04 04:32:14 +01:00
|
|
|
/* reserved fields, must be zero */
|
2014-03-01 03:46:19 +01:00
|
|
|
void* reserved[2];
|
2009-03-04 04:32:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-11-29 02:21:55 +01:00
|
|
|
/*
|
|
|
|
* sensors_poll_device_t is used with SENSORS_DEVICE_API_VERSION_0_1
|
|
|
|
* and is present for backward binary and source compatibility.
|
2013-12-19 18:58:28 +01:00
|
|
|
* See the Sensors HAL interface section for complete descriptions of the
|
|
|
|
* following functions:
|
|
|
|
* http://source.android.com/devices/sensors/index.html#hal
|
2009-03-04 04:32:14 +01:00
|
|
|
*/
|
2010-07-09 01:44:54 +02:00
|
|
|
struct sensors_poll_device_t {
|
|
|
|
struct hw_device_t common;
|
|
|
|
int (*activate)(struct sensors_poll_device_t *dev,
|
|
|
|
int handle, int enabled);
|
2012-11-29 02:21:55 +01:00
|
|
|
int (*setDelay)(struct sensors_poll_device_t *dev,
|
|
|
|
int handle, int64_t ns);
|
|
|
|
int (*poll)(struct sensors_poll_device_t *dev,
|
|
|
|
sensors_event_t* data, int count);
|
|
|
|
};
|
2010-07-09 01:44:54 +02:00
|
|
|
|
2012-11-29 02:21:55 +01:00
|
|
|
/*
|
|
|
|
* struct sensors_poll_device_1 is used with SENSORS_DEVICE_API_VERSION_1_0
|
|
|
|
*/
|
|
|
|
typedef struct sensors_poll_device_1 {
|
|
|
|
union {
|
|
|
|
/* sensors_poll_device_1 is compatible with sensors_poll_device_t,
|
|
|
|
* and can be down-cast to it
|
|
|
|
*/
|
2012-12-12 05:51:41 +01:00
|
|
|
struct sensors_poll_device_t v0;
|
2012-11-29 02:21:55 +01:00
|
|
|
|
|
|
|
struct {
|
|
|
|
struct hw_device_t common;
|
|
|
|
|
2013-12-19 18:58:28 +01:00
|
|
|
/* Activate/de-activate one sensor. Return 0 on success, negative
|
2012-11-29 02:21:55 +01:00
|
|
|
*
|
|
|
|
* handle is the handle of the sensor to change.
|
|
|
|
* enabled set to 1 to enable, or 0 to disable the sensor.
|
|
|
|
*
|
2013-12-19 18:58:28 +01:00
|
|
|
* Return 0 on success, negative errno code otherwise.
|
2012-11-29 02:21:55 +01:00
|
|
|
*/
|
|
|
|
int (*activate)(struct sensors_poll_device_t *dev,
|
|
|
|
int handle, int enabled);
|
|
|
|
|
|
|
|
/**
|
2014-03-01 03:46:19 +01:00
|
|
|
* Set the events's period in nanoseconds for a given sensor. If
|
|
|
|
* period_ns > max_delay it will be truncated to max_delay and if
|
|
|
|
* period_ns < min_delay it will be replaced by min_delay.
|
2012-11-29 02:21:55 +01:00
|
|
|
*/
|
|
|
|
int (*setDelay)(struct sensors_poll_device_t *dev,
|
2013-01-30 00:52:10 +01:00
|
|
|
int handle, int64_t period_ns);
|
2012-11-29 02:21:55 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns an array of sensor data.
|
|
|
|
*/
|
|
|
|
int (*poll)(struct sensors_poll_device_t *dev,
|
|
|
|
sensors_event_t* data, int count);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2013-12-19 18:58:28 +01:00
|
|
|
* Enables batch mode for the given sensor and sets the delay between events.
|
|
|
|
* See the Batching sensor results page for details:
|
|
|
|
* http://source.android.com/devices/sensors/batching.html
|
2010-07-09 01:44:54 +02:00
|
|
|
*/
|
2012-11-29 02:21:55 +01:00
|
|
|
int (*batch)(struct sensors_poll_device_1* dev,
|
2013-01-30 00:52:10 +01:00
|
|
|
int handle, int flags, int64_t period_ns, int64_t timeout);
|
2012-11-29 02:21:55 +01:00
|
|
|
|
2013-07-25 06:07:40 +02:00
|
|
|
/*
|
|
|
|
* Flush adds a META_DATA_FLUSH_COMPLETE event (sensors_event_meta_data_t)
|
|
|
|
* to the end of the "batch mode" FIFO for the specified sensor and flushes
|
2013-12-19 18:58:28 +01:00
|
|
|
* the FIFO.
|
2013-07-25 06:07:40 +02:00
|
|
|
*/
|
|
|
|
int (*flush)(struct sensors_poll_device_1* dev, int handle);
|
|
|
|
|
2012-11-29 02:21:55 +01:00
|
|
|
void (*reserved_procs[8])(void);
|
|
|
|
|
|
|
|
} sensors_poll_device_1_t;
|
|
|
|
|
|
|
|
|
2010-07-09 01:44:54 +02:00
|
|
|
|
2009-03-04 04:32:14 +01:00
|
|
|
/** convenience API for opening and closing a device */
|
|
|
|
|
2010-07-09 01:44:54 +02:00
|
|
|
static inline int sensors_open(const struct hw_module_t* module,
|
|
|
|
struct sensors_poll_device_t** device) {
|
|
|
|
return module->methods->open(module,
|
|
|
|
SENSORS_HARDWARE_POLL, (struct hw_device_t**)device);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int sensors_close(struct sensors_poll_device_t* device) {
|
|
|
|
return device->common.close(&device->common);
|
|
|
|
}
|
|
|
|
|
2012-11-29 02:21:55 +01:00
|
|
|
static inline int sensors_open_1(const struct hw_module_t* module,
|
2012-12-12 05:51:41 +01:00
|
|
|
sensors_poll_device_1_t** device) {
|
2012-11-29 02:21:55 +01:00
|
|
|
return module->methods->open(module,
|
|
|
|
SENSORS_HARDWARE_POLL, (struct hw_device_t**)device);
|
|
|
|
}
|
|
|
|
|
2012-12-12 05:51:41 +01:00
|
|
|
static inline int sensors_close_1(sensors_poll_device_1_t* device) {
|
2012-11-29 02:21:55 +01:00
|
|
|
return device->common.close(&device->common);
|
|
|
|
}
|
|
|
|
|
2009-03-04 04:32:14 +01:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif // ANDROID_SENSORS_INTERFACE_H
|