982a5dd7d079a74c1d34449bdaadfda331a04139
[contrib/mraa.git] / src / iio / iio.c
1 /*
2  * Author: Brendan Le Foll <brendan.le.foll@intel.com>
3  * Copyright (c) 2015 Intel Corporation.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining
6  * a copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sublicense, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be
14  * included in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25 #include "iio.h"
26 #include "mraa_internal.h"
27
28 mraa_iio_context
29 mraa_iio_init(int device)
30 {
31     if (device > plat->iio_device_count) {
32         return NULL;
33     }
34     return &plat->iio_devices[device];
35 }
36
37 int
38 mraa_iio_get_channel_count(mraa_iio_context dev)
39 {
40     return 1;
41 }
42
43 mraa_result_t
44 mraa_iio_read(mraa_iio_context dev, int channel, const char* attribute, float* data)
45 {
46     char buf[64];
47     snprintf(buf, 64, "/sys/bus/iio/devices/iio:device%d/in_voltage%d_%s", dev->num, channel, attribute);
48     int fd = open(buf, O_RDONLY);
49     if (fd != -1) {
50         int len = read(fd, &buf, 64);
51         *data = strtol(buf, NULL, 10);
52         return MRAA_SUCCESS;
53     }
54     return MRAA_ERROR_UNSPECIFIED;
55 }
56
57 mraa_result_t
58 mraa_iio_write(mraa_iio_context dev, int channel, const char* attribute)
59 {
60     return MRAA_ERROR_FEATURE_NOT_IMPLEMENTED;
61 }
62
63 mraa_result_t
64 mraa_iio_stop(mraa_iio_context dev)
65 {
66     free(dev);
67     return MRAA_SUCCESS;
68 }
69