-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadc.c
286 lines (246 loc) · 8.82 KB
/
adc.c
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
/*
* adc.c
*
* Created on: Feb 21, 2019
* Author: TritonCubed
*
* ADS1115 Adafruit breakout lib ported from
* the Arduino version. Can use several optimizations,
* but why bother?
*
* The breakout uses the following pins:
*
* RPI Chip
* --------------------
* Pin 1 (3v3) 3.3v
* Pin 6 (GND) GND
* Pin 5 (SCL) SCL
* Pin 3 (SDA) SDA
*/
#include "adc.h"
#include "helper.h"
#include <bcm2835.h>
#include <stdio.h>
/*
* writes to the ADC register
*/
void writeRegister( uint8_t i2cAddress, uint8_t reg, uint16_t value ) {
char buff[3];
buff[0] = (uint8_t)reg;
buff[1] = (uint8_t)(value >> 8) & 0xFF;
buff[2] = (uint8_t)(value & 0xFF);
bcm2835_i2c_setSlaveAddress( i2cAddress );
bcm2835_i2c_write( buff, 3 );
}
/*
* reads from the ADC register
*/
uint16_t readRegister( uint8_t i2cAddress, uint8_t reg ) {
char buff[2];
buff[0] = reg;
bcm2835_i2c_setSlaveAddress( i2cAddress );
bcm2835_i2c_write_read_rs( buff, 1, buff, 2 );
return buff[0] << 8 | buff[1];
}
/*
* Initializes the ADC. Make sure I2C is running.
*/
void ADC_init( ADC* adc, adsGain_t gain ) {
adc->m_i2cAddress = ADS1015_ADDRESS;
adc->m_conversionDelay = ADS1115_CONVERSIONDELAY;
adc->m_bitShift = 0;
adc->m_gain = gain; /* +/- 6.144V range (limited to VDD +0.3V max!) */
}
/*
* Gets a single-ended ADC reading from the specified channel
*/
uint16_t readADC_SingleEnded( ADC* adc, uint8_t channel ) {
if( channel > 3 ) {
return 0;
}
uint16_t config = ADS1015_REG_CONFIG_CQUE_NONE | // Disable the comparator (default val)
ADS1015_REG_CONFIG_CLAT_NONLAT | // Non-latching (default val)
ADS1015_REG_CONFIG_CPOL_ACTVLOW | // Alert/Rdy active low (default val)
ADS1015_REG_CONFIG_CMODE_TRAD | // Traditional comparator (default val)
ADS1015_REG_CONFIG_DR_1600SPS | // 1600 samples per second (default)
ADS1015_REG_CONFIG_MODE_SINGLE; // Single-shot mode (default)
// Set PGA/voltage range
config |= adc->m_gain;
// Set single-ended input channel
switch( channel ){
case ( 0 ):
config |= ADS1015_REG_CONFIG_MUX_SINGLE_0;
break;
case ( 1 ):
config |= ADS1015_REG_CONFIG_MUX_SINGLE_1;
break;
case ( 2 ):
config |= ADS1015_REG_CONFIG_MUX_SINGLE_2;
break;
case ( 3 ):
config |= ADS1015_REG_CONFIG_MUX_SINGLE_3;
break;
}
// Set 'start single-conversion' bit
config |= ADS1015_REG_CONFIG_OS_SINGLE;
// Write config register to the ADC
writeRegister( adc->m_i2cAddress, ADS1015_REG_POINTER_CONFIG, config );
// Wait for the conversion to complete
bcm2835_delay( adc->m_conversionDelay );
// Read the conversion results
// Shift 12-bit results right 4 bits for the ADS1015
return readRegister( adc->m_i2cAddress, ADS1015_REG_POINTER_CONVERT ) >> adc->m_bitShift;
}
/*
* Reads the conversion results, measuring the voltage
* difference between the P (AIN0) and N (AIN1) input. Generates
* a signed value since the difference can be either
* positive or negative.
*/
int16_t readADC_Differential_0_1( ADC* adc ) {
// Start with default values
uint16_t config = ADS1015_REG_CONFIG_CQUE_NONE | // Disable the comparator (default val)
ADS1015_REG_CONFIG_CLAT_NONLAT | // Non-latching (default val)
ADS1015_REG_CONFIG_CPOL_ACTVLOW | // Alert/Rdy active low (default val)
ADS1015_REG_CONFIG_CMODE_TRAD | // Traditional comparator (default val)
ADS1015_REG_CONFIG_DR_1600SPS | // 1600 samples per second (default)
ADS1015_REG_CONFIG_MODE_SINGLE; // Single-shot mode (default)
// Set PGA/voltage range
config |= adc->m_gain;
// Set channels
config |= ADS1015_REG_CONFIG_MUX_DIFF_0_1; // AIN0 = P, AIN1 = N
// Set 'start single-conversion' bit
config |= ADS1015_REG_CONFIG_OS_SINGLE;
// Write config register to the ADC
writeRegister( adc->m_i2cAddress, ADS1015_REG_POINTER_CONFIG, config );
// Wait for the conversion to complete
bcm2835_delay( adc->m_conversionDelay );
// Read the conversion results
uint16_t res = readRegister( adc->m_i2cAddress, ADS1015_REG_POINTER_CONVERT ) >> adc->m_bitShift;
if( adc->m_bitShift == 0 ) {
return (int16_t) res;
}
else {
// Shift 12-bit results right 4 bits for the ADS1015,
// making sure we keep the sign bit intact
if( res > 0x07FF ) {
// negative number - extend the sign to 16th bit
res |= 0xF000;
}
return (int16_t) res;
}
}
/*
* Reads the conversion results, measuring the voltage
* difference between the P (AIN2) and N (AIN3) input. Generates
* a signed value since the difference can be either
* positive or negative.
*/
int16_t readADC_Differential_2_3( ADC* adc ) {
// Start with default values
uint16_t config = ADS1015_REG_CONFIG_CQUE_NONE | // Disable the comparator (default val)
ADS1015_REG_CONFIG_CLAT_NONLAT | // Non-latching (default val)
ADS1015_REG_CONFIG_CPOL_ACTVLOW | // Alert/Rdy active low (default val)
ADS1015_REG_CONFIG_CMODE_TRAD | // Traditional comparator (default val)
ADS1015_REG_CONFIG_DR_1600SPS | // 1600 samples per second (default)
ADS1015_REG_CONFIG_MODE_SINGLE; // Single-shot mode (default)
// Set PGA/voltage range
config |= adc->m_gain;
// Set channels
config |= ADS1015_REG_CONFIG_MUX_DIFF_2_3; // AIN2 = P, AIN3 = N
// Set 'start single-conversion' bit
config |= ADS1015_REG_CONFIG_OS_SINGLE;
// Write config register to the ADC
writeRegister( adc->m_i2cAddress, ADS1015_REG_POINTER_CONFIG, config );
// Wait for the conversion to complete
bcm2835_delay( adc->m_conversionDelay );
// Read the conversion results
uint16_t res = readRegister( adc->m_i2cAddress, ADS1015_REG_POINTER_CONVERT ) >> adc->m_bitShift;
if( adc->m_bitShift == 0 ) {
return (int16_t) res;
}
else {
// Shift 12-bit results right 4 bits for the ADS1015,
// making sure we keep the sign bit intact
if( res > 0x07FF ) {
// negative number - extend the sign to 16th bit
res |= 0xF000;
}
return (int16_t) res;
}
}
/*
* Sets up the comparator to operate in basic mode, causing the
* ALERT/RDY pin to assert (go from high to low) when the ADC
* value exceeds the specified threshold.
*
* This will also set the ADC in continuous conversion mode.
*/
void startComparator_SingleEnded( ADC* adc, uint8_t channel, int16_t threshold ) {
// Start with default values
uint16_t config = ADS1015_REG_CONFIG_CQUE_1CONV | // Comparator enabled and asserts on 1 match
ADS1015_REG_CONFIG_CLAT_LATCH | // Latching mode
ADS1015_REG_CONFIG_CPOL_ACTVLOW | // Alert/Rdy active low (default val)
ADS1015_REG_CONFIG_CMODE_TRAD | // Traditional comparator (default val)
ADS1015_REG_CONFIG_DR_1600SPS | // 1600 samples per second (default)
ADS1015_REG_CONFIG_MODE_CONTIN | // Continuous conversion mode
ADS1015_REG_CONFIG_MODE_CONTIN; // Continuous conversion mode
// Set PGA/voltage range
config |= adc->m_gain;
// Set single-ended input channel
switch( channel ){
case ( 0 ):
config |= ADS1015_REG_CONFIG_MUX_SINGLE_0;
break;
case ( 1 ):
config |= ADS1015_REG_CONFIG_MUX_SINGLE_1;
break;
case ( 2 ):
config |= ADS1015_REG_CONFIG_MUX_SINGLE_2;
break;
case ( 3 ):
config |= ADS1015_REG_CONFIG_MUX_SINGLE_3;
break;
}
// Set the high threshold register
// Shift 12-bit results left 4 bits for the ADS1015
writeRegister( adc->m_i2cAddress, ADS1015_REG_POINTER_HITHRESH,
threshold << adc->m_bitShift );
// Write config register to the ADC
writeRegister( adc->m_i2cAddress, ADS1015_REG_POINTER_CONFIG, config );
}
/*
* In order to clear the comparator, we need to read the
* conversion results. This function reads the last conversion
* results without changing the config value.
*/
int16_t getLastConversionResults( ADC* adc ) {
// Wait for the conversion to complete
bcm2835_delay( adc->m_conversionDelay );
// Read the conversion results
uint16_t res = readRegister( adc->m_i2cAddress, ADS1015_REG_POINTER_CONVERT ) >> adc->m_bitShift;
if( adc->m_bitShift == 0 ) {
return (int16_t) res;
}
else {
// Shift 12-bit results right 4 bits for the ADS1015,
// making sure we keep the sign bit intact
if( res > 0x07FF ) {
// negative number - extend the sign to 16th bit
res |= 0xF000;
}
return (int16_t) res;
}
}
/*
* Sets the gain and input voltage range
*/
void setGain( ADC* adc, adsGain_t gain ) {
adc->m_gain = gain;
}
/*
* Gets the gain and input voltage range
*/
adsGain_t getGain( ADC* adc ) {
return adc->m_gain;
}