blob: 22892f8414abd6a3a01922bb9e0d2ccefe183891 [file] [log] [blame]
/*
* Copyright (C) 2008 The Android Open Source Project
* Copyright (C) 2011-2015 Freescale Semiconductor, Inc.
*
* 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_FSL_SENSORS_HUB_H
#define ANDROID_FSL_SENSORS_HUB_H
#include <stdint.h>
#include <errno.h>
#include <sys/cdefs.h>
#include <sys/types.h>
#include <string.h>
#include "sensors.h"
#include "SensorBase.h"
#include "InputEventReader.h"
/*****************************************************************************/
class FSLSensorsHub : public SensorBase {
public:
FSLSensorsHub();
virtual ~FSLSensorsHub();
virtual int setDelay(int32_t handle, int64_t ns);
virtual int setEnable(int32_t handle, int enabled);
virtual int getEnable(int32_t handle);
virtual int readEvents(sensors_event_t* data, int count);
void processEvent(int code, int value);
void processEvent(int type ,int code, int value);
private:
enum {
accel = 1,
mag = 2,
gyro = 3,
orn = 4,
rv = 5,
la = 6,
gravt = 7,
sd = 8,
sc = 9,
sensors,
};
int is_sensor_enabled();
int enable_sensor(int what);
int disable_sensor(int what);
int update_delay(int sensor_type,int64_t ns);
int readDisable();
int writeEnable(int what,int isEnable);
int writeDelay(int what,int64_t ns);
int mEnabled[sensors];
int mPendingMask;
char mClassPath[sensors][PATH_MAX];
InputEventCircularReader mInputReader;
sensors_event_t mPendingEvent[sensors];
int64_t mDelay[sensors];
};
/*****************************************************************************/
#endif // ANDROID_FSL_ACCEL_SENSOR_H