blob: 50b304d7bc9cc2ffbbe3665df30aba08c7b76ef3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
/*
* Copyright (C) 2013 Paul Kocialkowski <contact@paulk.fr>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <unistd.h>
#include <stdint.h>
#include <fcntl.h>
#include <errno.h>
#include <math.h>
#include <sys/types.h>
#include <linux/ioctl.h>
#include <linux/input.h>
#include <hardware/sensors.h>
#include <hardware/hardware.h>
#define LOG_TAG "orientationd"
#include <utils/Log.h>
#include "orientationd.h"
float yas529_convert(int value)
{
return value / 1000.0f;
}
int yas529_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->magnetic.x = yas529_convert(input_event.value);
break;
case REL_Y:
data->magnetic.y = yas529_convert(input_event.value);
break;
case REL_Z:
data->magnetic.z = yas529_convert(input_event.value);
break;
default:
continue;
}
}
} while (input_event.type != EV_SYN);
return 0;
}
struct orientationd_handlers yas529 = {
.input_name = "magnetic_sensor",
.handle = SENSOR_TYPE_MAGNETIC_FIELD,
.poll_fd = -1,
.get_data = yas529_get_data,
};
|