summaryrefslogtreecommitdiffstats
path: root/libsensors/AkmSensor.h
diff options
context:
space:
mode:
authorDheeraj CVR <cvr.dheeraj@gmail.com>2015-01-01 21:33:39 +0530
committertilaksidduram <tilaksidduram@gmail.com>2015-01-05 23:53:52 +0530
commit9fec655291ddf36e5e568ce57a8ae10a161e3a5a (patch)
tree72496e5ea1476d90595ec8c297090ce504581724 /libsensors/AkmSensor.h
parent5a2a536d00e53567f09a13600007fe0cafbd2b5a (diff)
downloaddevice_samsung_n7100-9fec655291ddf36e5e568ce57a8ae10a161e3a5a.zip
device_samsung_n7100-9fec655291ddf36e5e568ce57a8ae10a161e3a5a.tar.gz
device_samsung_n7100-9fec655291ddf36e5e568ce57a8ae10a161e3a5a.tar.bz2
n7100: Bring back open source sensors
This reverts commit 00ac0f43785afd63a16b74034f4701928e941360. Change-Id: I810bad7b533d8c8edf0152b36874789e02994bad n7100: sensors: Fix buffer size Change-Id: I93a999a47ade6982c0b1fec56d611465f8dad830 Conflicts: n7100.mk
Diffstat (limited to 'libsensors/AkmSensor.h')
-rw-r--r--libsensors/AkmSensor.h66
1 files changed, 66 insertions, 0 deletions
diff --git a/libsensors/AkmSensor.h b/libsensors/AkmSensor.h
new file mode 100644
index 0000000..8d488f5
--- /dev/null
+++ b/libsensors/AkmSensor.h
@@ -0,0 +1,66 @@
+/*
+ * Copyright (C) 2008 The Android Open Source Project
+ *
+ * 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_AKM_SENSOR_H
+#define ANDROID_AKM_SENSOR_H
+
+#include <stdint.h>
+#include <errno.h>
+#include <sys/cdefs.h>
+#include <sys/types.h>
+
+
+#include "sensors.h"
+#include "SensorBase.h"
+#include "InputEventReader.h"
+
+/*****************************************************************************/
+
+struct input_event;
+
+class AkmSensor : public SensorBase {
+public:
+ AkmSensor();
+ virtual ~AkmSensor();
+
+ enum {
+ Accelerometer = 0,
+ MagneticField = 1,
+ Orientation = 2,
+ numSensors
+ };
+
+ virtual int setDelay(int32_t handle, int64_t ns);
+ virtual int enable(int32_t handle, int enabled);
+ virtual int readEvents(sensors_event_t* data, int count);
+ void processEvent(int code, int value);
+
+ int setInitialState();
+
+private:
+ int loadAKMLibrary();
+ int update_delay();
+ void *mLibAKM;
+ uint32_t mEnabled;
+ uint32_t mPendingMask;
+ InputEventCircularReader mInputReader;
+ sensors_event_t mPendingEvents[numSensors];
+ uint64_t mDelays[numSensors];
+};
+
+/*****************************************************************************/
+
+#endif // ANDROID_AKM_SENSOR_H