资源简介
lsm303dlh电子罗盘传感器hal程序,包括源代码和编译好的so文件

代码片段和文件信息
/*
* Copyright (C) 2011 Freescale Semiconductor Inc.
* 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.
*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include “AccelSensor.h“
//+++++++++++++++++++add
#define ACCEL_SENSOR_NAME “lsm303dlh_acc_sysfs“
//+++++++++++++++++++by Jay
/*****************************************************************************/
AccelSensor::AccelSensor()
: Sensorbase(NULL NULL)
mEnabled(0)
mPendingMask(0)
mInputReader(32)
mMinPollDelay(0)
mMaxPollDelay(0)
{
#if defined(ACCELEROMETER_SENSOR_MMA8451)
data_name = “mma8451“;
#elif defined(ACCELEROMETER_SENSOR_MMA8450)
data_name = “mma8450“;
//++++++++++++++add
#elif defined(ACCELEROMETER_SENSOR_LSM)
data_name = ACCEL_SENSOR_NAME;
//++++++++++++++by Jay
#else
#error you must define accelerometer properly
data_name =NULL;
data_fd = -1;
#endif
if (data_name) {
data_fd = openInput(data_name);
getPollFile(data_name);
}
memset(mPendingEvents 0 sizeof(mPendingEvents));
mPendingEvents[Accelerometer].version = sizeof(sensors_event_t);
mPendingEvents[Accelerometer].sensor = ID_A;
mPendingEvents[Accelerometer].type = SENSOR_TYPE_ACCELEROMETER;
mPendingEvents[Accelerometer].acceleration.status = SENSOR_STATUS_ACCURACY_HIGH;
// read the actual value of all sensors if they‘re enabled already
struct input_absinfo absinfo;
short flags = 0;
if (accel_is_sensor_enabled(SENSOR_TYPE_ACCELEROMETER)) {
mEnabled |= 1< if (!ioctl(data_fd EVIOCGABS(EVENT_TYPE_ACCEL_X) &absinfo)) {
mPendingEvents[Accelerometer].acceleration.x = absinfo.value * CONVERT_A_X;
}
if (!ioctl(data_fd EVIOCGABS(EVENT_TYPE_ACCEL_Y) &absinfo)) {
mPendingEvents[Accelerometer].acceleration.y = absinfo.value * CONVERT_A_Y;
}
if (!ioctl(data_fd EVIOCGABS(EVENT_TYPE_ACCEL_Z) &absinfo)) {
mPendingEvents[Accelerometer].acceleration.z = absinfo.value * CONVERT_A_Z;
}
}
}
AccelSensor::~AccelSensor()
{
}
int AccelSensor::enable(int32_t handle int en)
{
int what = -1;
switch (handle) {
case ID_A: what = Accelerometer; break;
}
if (uint32_t(what) >= numSensors)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 8860 2013-05-17 14:50 hal\compass_hal\AccelSensor.cpp
文件 2206 2013-05-17 14:50 hal\compass_hal\AccelSensor.h
文件 1297 2013-05-17 14:50 hal\compass_hal\Android.mk
文件 2313 2013-05-17 14:50 hal\compass_hal\InputEventReader.cpp
文件 1444 2013-05-17 14:50 hal\compass_hal\InputEventReader.h
文件 9271 2013-05-17 14:50 hal\compass_hal\MagneticSensor.cpp
文件 2309 2013-05-17 14:50 hal\compass_hal\MagneticSensor.h
文件 3225 2013-05-17 14:50 hal\compass_hal\Sensorba
文件 1855 2013-05-17 14:50 hal\compass_hal\Sensorba
文件 9542 2013-05-17 14:50 hal\compass_hal\sensors.cpp
文件 3249 2013-05-17 14:50 hal\compass_hal\sensors.h
文件 18304 2013-05-17 14:39 hal\sensors.default.so
文件 41 2013-05-17 14:54 hal\新建 文本文档.txt
目录 0 2013-05-17 15:06 hal\compass_hal
目录 0 2013-05-17 15:06 hal
----------- --------- ---------- ----- ----
63916 15
- 上一篇:eagle 9.2.2破解补丁
- 下一篇:Spark开发指南
相关资源
- halcon 测量助手
- halcon简单实现人脸识别.hdev
- halcon极坐标变换傅里叶变换
- halcon算子速查手册.pdf115507
- halcon-ocr训练及识别
- Halcon车牌识别
- halcon实现创建模板中心可以任意设置
- halcon-标定与精确测量
- labview掉halcon.vi
- 基于HALCON识别指示灯亮灭和OCR识别.
- halcon跟随测量.hdev
- 视觉分拣.hdev
- Halcon之OCR(看完必会)
- Hall effect of reactive sputtered iron nitride
- HALCON使用手册简体中文版
- Bioleaching of chalcopyrite and marmatite by m
- Halcon画刷和橡皮以及鼠标选取ROI源码
- One-pot synthesis of benzothiazolones from 2-h
- Catalytic Activity of Styrene-divinyl Benzene
- Research of Catalyst Preparing 14-Naphthoquino
- stm32l0系列HAL库
- halcon1032位和64位完美破解版.rar
- AI Challenger用户评论情感分析
- HAL库下的OLED移植
- AI Challenger 细粒度用户评论情感分析
- UNIX Internals : The New Frontiers PDF Uresh V
- Molecular identification polymorphism and asso
- Edge Computing: Vision and Challenges
- Involvement of chloroplast-derived ROS in 3-ac
- 海康相机SDK二次开发与Halcon混合编程
评论
共有 条评论