39ea2f056f74b6f62ccbcf5c08c5a9030c5425db
[contrib/mraa.git] / src / i2c / i2c.cxx
1 /*
2  * Copyright (C) Intel Corporation.
3  *
4  * Author: Brendan Le Foll
5  *                                                                                                                                                             
6  * Copyright © 2014 Intel Corporation
7  *
8  * Permission is hereby granted, free of charge, to any person obtaining
9  * a copy of this software and associated documentation files (the
10  * "Software"), to deal in the Software without restriction, including
11  * without limitation the rights to use, copy, modify, merge, publish,
12  * distribute, sublicense, and/or sell copies of the Software, and to
13  * permit persons to whom the Software is furnished to do so, subject to
14  * the following conditions:
15  *
16  * The above copyright notice and this permission notice shall be
17  * included in all copies or substantial portions of the Software.
18  *
19  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23  * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24  * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25  * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26  */
27
28 #include "i2c.h"
29 #include "smbus.h"
30
31 using namespace maa;
32
33 I2C::I2C(unsigned int sda, unsigned int scl)
34 {
35     // Galileo only has one I2C device which is always /dev/i2c-0
36     // reliability is a fickle friend!
37     if (i2c_handle = open("/dev/i2c-0", O_RDWR) < 1) {
38         fprintf(stderr, "Failed to open requested i2c port");
39     }
40 }
41
42 void
43 I2C::frequency(int hz)
44 {
45     _hz = hz;
46 }
47
48 int
49 I2C::read(int address, char *data, int length, bool repeated)
50 {
51     return 0;
52 }
53
54 int
55 I2C::read(int ack)
56 {
57     int byte;
58     if (byte = i2c_smbus_read_byte(i2c_handle) < 0) {
59         return -1;
60     }
61     return byte;
62 }
63
64 int
65 I2C::write(int address, const char *data, int length, bool repeated)
66 {
67     return 0;
68 }
69
70 int
71 I2C::write(int data)
72 {
73 }
74
75 void
76 I2C::start()
77 {
78 }
79
80 void
81 I2C::stop()
82 {
83 }
84
85 void
86 I2C::aquire()
87 {
88 }