From cd039f42550bc16289c9ccb80cefdec84408d8a6 Mon Sep 17 00:00:00 2001 From: Paul Kocialkowski Date: Mon, 23 Dec 2013 22:25:33 +0100 Subject: Aries Sensors Signed-off-by: Paul Kocialkowski --- sensors/orientationd/smb380.c | 85 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 sensors/orientationd/smb380.c (limited to 'sensors/orientationd/smb380.c') diff --git a/sensors/orientationd/smb380.c b/sensors/orientationd/smb380.c new file mode 100644 index 0000000..4566d94 --- /dev/null +++ b/sensors/orientationd/smb380.c @@ -0,0 +1,85 @@ +/* + * Copyright (C) 2013 Paul Kocialkowski + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include + +#define LOG_TAG "orientationd" +#include + +#include "orientationd.h" + +float smb380_convert(int value) +{ + return value * (GRAVITY_EARTH / 256.0f); +} + +int smb380_get_data(struct orientationd_handlers *handlers, + struct orientationd_data *data) +{ + struct input_event input_event; + int input_fd; + int rc; + + if (handlers == NULL || data == NULL) + return -EINVAL; + + input_fd = handlers->poll_fd; + if (input_fd < 0) + return -1; + + do { + rc = read(input_fd, &input_event, sizeof(input_event)); + if (rc < (int) sizeof(input_event)) + break; + + if (input_event.type == EV_REL) { + switch (input_event.code) { + case REL_X: + data->acceleration.x = smb380_convert(input_event.value); + break; + case REL_Y: + data->acceleration.y = smb380_convert(input_event.value); + break; + case REL_Z: + data->acceleration.z = smb380_convert(input_event.value); + break; + default: + continue; + } + } + } while (input_event.type != EV_SYN); + + return 0; +} + +struct orientationd_handlers smb380 = { + .input_name = "accelerometer_sensor", + .handle = SENSOR_TYPE_ACCELEROMETER, + .poll_fd = -1, + .get_data = smb380_get_data, +}; -- cgit v1.1