-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathI2CHelpers.cpp
171 lines (144 loc) · 4.75 KB
/
I2CHelpers.cpp
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
#include <string>
#include "I2CHelpers.h"
#include <Wire.h>
void I2CHelpers::intToTwoByteArray(int value, byte* bytes_array)
{
bytes_array[0] = (value >> 8) & 0xFF;
bytes_array[1] = value & 0xFF;
}
int I2CHelpers::byteArrayToInt(byte* bytes_array, int num_bytes)
{
int value = 0;
for (int i = 0; i < num_bytes; i++)
{
value = (value << 8) + bytes_array[i];
}
return value;
}
int I2CHelpers::byteArrayToSignedInt(byte* bytes_array, int num_bytes)
{
int value = 0;
for (int i = 0; i < num_bytes; i++)
{
value = (value << 8) + bytes_array[i];
}
if (value > 32767)
{
value = value - 65536;
}
return value;
}
int I2CHelpers::wordToInt(byte high_byte, byte low_byte)
{
return (high_byte << 8) + low_byte;
}
int I2CHelpers::wordToSignedInt(byte high_byte, byte low_byte)
{
int value = (high_byte << 8) + low_byte;
if (value > 32767)
{
value = value - 65536;
}
return value;
}
byte I2CHelpers::readFromCurrentAddress(int device_address, int bytes_to_read, byte* buf)
{
// perform a read without specifying the register address
// this will read from the current address if other read/writes
// have been performed in the same communication window
// or the default read address (stored in the register at 0x0675)
// if no other read/write has been performed
// this increases the speed of the read operation, by saving the
// time required to specify the register address
// request the bytes from the device, sending repeated start
//Wire.requestFrom(device_address, bytes_to_read, false);
Wire.requestFrom(device_address, bytes_to_read, true);
int i = 0;
byte error = 0;
while (Wire.available())
{
if (i >= bytes_to_read)
{
// if we have more bytes than we requested, return an error
error = 6;
break;
}
buf[i] = Wire.read();
i++;
}
return error;
}
byte I2CHelpers::readFromRegister(int device_address, int register_address, int bytes_to_read, byte* buf)
{
// start the transmission to device
Wire.beginTransmission(device_address);
// convert the register to read from to a byte array
byte addrByteArray[2];
I2CHelpers::intToTwoByteArray(register_address, addrByteArray);
// send the register to read from
Wire.write(addrByteArray, 2);
// end the transmission WITHOUT releasing the bus (sending repeated start instead)
byte error = Wire.endTransmission(false);
// if there was an error, return it
if (error != 0)
{
return error;
}
// request the bytes from the device, sending stop when done
//Wire.requestFrom(device_address, bytes_to_read, false);
Wire.requestFrom(device_address, bytes_to_read, true);
int i = 0;
while (Wire.available())
{
if (i >= bytes_to_read)
{
// if we have more bytes than we requested, return an error
error = 6;
break;
}
buf[i] = Wire.read();
i++;
}
return error;
}
byte I2CHelpers::writeToRegister(int device_address, int register_address, int bytes_to_write, byte* buf)
{
// start the transmission to device
Wire.beginTransmission(device_address);
// convert the register to read from to a byte array
byte addrByteArray[2];
I2CHelpers::intToTwoByteArray(register_address, addrByteArray);
// send the register to read from
Wire.write(addrByteArray, 2);
// send the bytes to write
Wire.write(buf, bytes_to_write);
byte error = Wire.endTransmission(true);
return error;
}
bool I2CHelpers::getBit(byte b, int bit)
{
return (b >> bit) & 1;
}
byte I2CHelpers::endCommunication(int device_address)
{
// End communication
//
// As per the IQS550 datasheet:
//
// Unlike the previous A000 implementation,
// an I2C STOP will not terminate the communication window.
// When all required I2C transactionshave been completed,
// the communication session must be terminated manually.
// This is achieved by sending the End Communication Window
// command, by writing a single byte (any data) to the address
// 0xEEEE, followed by a STOP. This will end the communication
// window, RDY will go low and the IQS5xx will continue with
// a new sensing and processing cycle.
Wire.beginTransmission(device_address); // start transmission with the TPS65
// convert the register to read from to a byte array
byte addrByteArray[2];
I2CHelpers::intToTwoByteArray(END_COMM_REG, addrByteArray);
Wire.write(addrByteArray, 2); // send the End Communication Window command address
Wire.write('a'); // write one byte
return Wire.endTransmission(true); // end transmission WITH I2C STOP message
}