forked from pedvide/ADC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ADC.h
418 lines (325 loc) · 17 KB
/
ADC.h
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/* Teensy 3.x, LC ADC library
* https://github.com/pedvide/ADC
* Copyright (c) 2015 Pedro Villanueva
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/* ADC.h: Control for one (Teensy 3.0, LC) or two ADC modules (Teensy 3.1).
*
*/
/* TODO
* - Function to measure more that 1 pin consecutively (stream?)
*
* bugs:
* - comparison values in 16 bit differential mode are twice what they should be
*/
#ifndef ADC_H
#define ADC_H
#define ADC_0 0
#define ADC_1 1
// include ADC module class
#include "ADC_Module.h"
#ifdef __cplusplus
extern "C" {
#endif
/** Class ADC: Controls the Teensy 3.x ADC
*
*/
class ADC
{
public:
/** Default constructor */
ADC();
// create both adc objects
//! Object to control the ADC0
ADC_Module *adc0; // adc object
#if ADC_NUM_ADCS>1
//! Object to control the ADC1
ADC_Module *adc1; // adc object
#endif
/////////////// METHODS TO SET/GET SETTINGS OF THE ADC ////////////////////
//! Set the voltage reference you prefer, default is 3.3 V (VCC)
/*!
* \param type can be ADC_REF_3V3, ADC_REF_1V2 (not for Teensy LC) or ADC_REF_EXT.
*
* It recalibrates at the end.
*/
void setReference(uint8_t type, int8_t adc_num = -1);
//! Change the resolution of the measurement.
/*!
* \param bits is the number of bits of resolution.
* For single-ended measurements: 8, 10, 12 or 16 bits.
* For differential measurements: 9, 11, 13 or 16 bits.
* If you want something in between (11 bits single-ended for example) select the inmediate higher
* and shift the result one to the right.
*
* Whenever you change the resolution, change also the comparison values (if you use them).
*/
void setResolution(uint8_t bits, int8_t adc_num = -1);
//! Returns the resolution of the ADC_Module.
uint8_t getResolution(int8_t adc_num = -1);
//! Returns the maximum value for a measurement: 2^res-1.
uint32_t getMaxValue(int8_t adc_num = -1);
//! Sets the conversion speed (changes the ADC clock, ADCK)
/**
* \param speed can be ADC_VERY_LOW_SPEED, ADC_LOW_SPEED, ADC_MED_SPEED, ADC_HIGH_SPEED_16BITS, ADC_HIGH_SPEED or ADC_VERY_HIGH_SPEED.
*
* ADC_VERY_LOW_SPEED is guaranteed to be the lowest possible speed within specs for resolutions less than 16 bits (higher than 1 MHz),
* it's different from ADC_LOW_SPEED only for 24, 4 or 2 MHz bus frequency.
* ADC_LOW_SPEED is guaranteed to be the lowest possible speed within specs for all resolutions (higher than 2 MHz).
* ADC_MED_SPEED is always >= ADC_LOW_SPEED and <= ADC_HIGH_SPEED.
* ADC_HIGH_SPEED_16BITS is guaranteed to be the highest possible speed within specs for all resolutions (lower or eq than 12 MHz).
* ADC_HIGH_SPEED is guaranteed to be the highest possible speed within specs for resolutions less than 16 bits (lower or eq than 18 MHz).
* ADC_VERY_HIGH_SPEED may be out of specs, it's different from ADC_HIGH_SPEED only for 48, 40 or 24 MHz bus frequency.
*
* Additionally the conversion speed can also be ADC_ADACK_2_4, ADC_ADACK_4_0, ADC_ADACK_5_2 and ADC_ADACK_6_2,
* where the numbers are the frequency of the ADC clock (ADCK) in MHz and are independent on the bus speed.
* This is useful if you are using the Teensy at a very low clock frequency but want faster conversions,
* but if F_BUS<F_ADCK, you can't use ADC_VERY_HIGH_SPEED for sampling speed.
*
*/
void setConversionSpeed(uint8_t speed, int8_t adc_num = -1);
//! Sets the sampling speed
/** Increase the sampling speed for low impedance sources, decrease it for higher impedance ones.
* \param speed can be ADC_VERY_LOW_SPEED, ADC_LOW_SPEED, ADC_MED_SPEED, ADC_HIGH_SPEED or ADC_VERY_HIGH_SPEED.
*
* ADC_VERY_LOW_SPEED is the lowest possible sampling speed (+24 ADCK).
* ADC_LOW_SPEED adds +16 ADCK.
* ADC_MED_SPEED adds +10 ADCK.
* ADC_HIGH_SPEED (or ADC_HIGH_SPEED_16BITS) adds +6 ADCK.
* ADC_VERY_HIGH_SPEED is the highest possible sampling speed (0 ADCK added).
*/
void setSamplingSpeed(uint8_t speed, int8_t adc_num = -1);
//! Set the number of averages
/*!
* \param num can be 0, 4, 8, 16 or 32.
*/
void setAveraging(uint8_t num, int8_t adc_num = -1);
//! Enable interrupts
/** An IRQ_ADC0 Interrupt will be raised when the conversion is completed
* (including hardware averages and if the comparison (if any) is true).
*/
void enableInterrupts(int8_t adc_num = -1);
//! Disable interrupts
void disableInterrupts(int8_t adc_num = -1);
//! Enable DMA request
/** An ADC DMA request will be raised when the conversion is completed
* (including hardware averages and if the comparison (if any) is true).
*/
void enableDMA(int8_t adc_num = -1);
//! Disable ADC DMA request
void disableDMA(int8_t adc_num = -1);
//! Enable the compare function to a single value
/** A conversion will be completed only when the ADC value
* is >= compValue (greaterThan=1) or < compValue (greaterThan=0)
* Call it after changing the resolution
* Use with interrupts or poll conversion completion with isComplete()
*/
void enableCompare(int16_t compValue, bool greaterThan, int8_t adc_num = -1);
//! Enable the compare function to a range
/** A conversion will be completed only when the ADC value is inside (insideRange=1) or outside (=0)
* the range given by (lowerLimit, upperLimit),including (inclusive=1) the limits or not (inclusive=0).
* See Table 31-78, p. 617 of the freescale manual.
* Call it after changing the resolution
* Use with interrupts or poll conversion completion with isComplete()
*/
void enableCompareRange(int16_t lowerLimit, int16_t upperLimit, bool insideRange, bool inclusive, int8_t adc_num = -1);
//! Disable the compare function
void disableCompare(int8_t adc_num = -1);
//! Enable and set PGA
/** Enables the PGA and sets the gain
* Use only for signals lower than 1.2 V
* \param gain can be 1, 2, 4, 8, 16, 32 or 64
*
*/
void enablePGA(uint8_t gain, int8_t adc_num = -1);
//! Returns the PGA level
/** PGA level = from 1 to 64
*/
uint8_t getPGA(int8_t adc_num = -1);
//! Disable PGA
void disablePGA(int8_t adc_num = -1);
////////////// INFORMATION ABOUT THE STATE OF THE ADC /////////////////
//! Is the ADC converting at the moment?
bool isConverting(int8_t adc_num = -1);
//! Is an ADC conversion ready?
/**
* \return 1 if yes, 0 if not.
* When a value is read this function returns 0 until a new value exists
* So it only makes sense to call it with continuous or non-blocking methods
*/
bool isComplete(int8_t adc_num = -1);
//! Is the ADC in differential mode?
bool isDifferential(int8_t adc_num = -1);
//! Is the ADC in continuous mode?
bool isContinuous(int8_t adc_num = -1);
//////////////// BLOCKING CONVERSION METHODS //////////////////
//! Returns the analog value of the pin.
/** It waits until the value is read and then returns the result.
* If a comparison has been set up and fails, it will return ADC_ERROR_VALUE.
* This function is interrupt safe, so it will restore the adc to the state it was before being called
* If more than one ADC exists, it will select the module with less workload, you can force a selection using
* adc_num. If you select ADC1 in Teensy 3.0 it will return ADC_ERROR_VALUE.
*/
int analogRead(uint8_t pin, int8_t adc_num = -1);
//! Reads the differential analog value of two pins (pinP - pinN).
/** It waits until the value is read and then returns the result.
* If a comparison has been set up and fails, it will return ADC_ERROR_VALUE.
* \param pinP must be A10 or A12.
* \param pinN must be A11 (if pinP=A10) or A13 (if pinP=A12).
* Other pins will return ADC_ERROR_VALUE.
*
* This function is interrupt safe, so it will restore the adc to the state it was before being called
* If more than one ADC exists, it will select the module with less workload, you can force a selection using
* adc_num
*/
int analogReadDifferential(uint8_t pinP, uint8_t pinN, int8_t adc_num = -1);
/////////////// NON-BLOCKING CONVERSION METHODS //////////////
//! Starts an analog measurement on the pin and enables interrupts.
/** It returns inmediately, get value with readSingle().
* If the pin is incorrect it returns ADC_ERROR_VALUE
* If this function interrupts a measurement, it stores the settings in adc_config
*/
bool startSingleRead(uint8_t pin, int8_t adc_num = -1);
//! Start a differential conversion between two pins (pinP - pinN) and enables interrupts.
/** It returns inmediately, get value with readSingle().
* \param pinP must be A10 or A12.
* \param pinN must be A11 (if pinP=A10) or A13 (if pinP=A12).
*
* Other pins will return ADC_ERROR_DIFF_VALUE.
* If this function interrupts a measurement, it stores the settings in adc_config
*/
bool startSingleDifferential(uint8_t pinP, uint8_t pinN, int8_t adc_num = -1);
//! Reads the analog value of a single conversion.
/** Set the conversion with with startSingleRead(pin) or startSingleDifferential(pinP, pinN).
* \return the converted value.
*/
int readSingle(int8_t adc_num = -1);
///////////// CONTINUOUS CONVERSION METHODS ////////////
//! Starts continuous conversion on the pin.
/** It returns as soon as the ADC is set, use analogReadContinuous() to read the value.
*/
bool startContinuous(uint8_t pin, int8_t adc_num = -1);
//! Starts continuous conversion between the pins (pinP-pinN).
/** It returns as soon as the ADC is set, use analogReadContinuous() to read the value.
* \param pinP must be A10 or A12.
* \param pinN must be A11 (if pinP=A10) or A13 (if pinP=A12).
* Other pins will return ADC_ERROR_DIFF_VALUE.
*/
bool startContinuousDifferential(uint8_t pinP, uint8_t pinN, int8_t adc_num = -1);
//! Reads the analog value of a continuous conversion.
/** Set the continuous conversion with with analogStartContinuous(pin) or startContinuousDifferential(pinP, pinN).
* \return the last converted value.
* If single-ended and 16 bits it's necessary to typecast it to an unsigned type (like uint16_t),
* otherwise values larger than 3.3/2 V are interpreted as negative!
*/
int analogReadContinuous(int8_t adc_num = -1);
//! Stops continuous conversion
void stopContinuous(int8_t adc_num = -1);
/////////// SYNCHRONIZED METHODS ///////////////
///// IF THE BOARD HAS ONLY ONE ADC, THEY ARE EMPYT METHODS /////
//! Struct for synchronous measurements
/** result_adc0 has the result from ADC0 and result_adc1 from ADC1.
*/
struct Sync_result{
int32_t result_adc0, result_adc1;
};
//////////////// SYNCHRONIZED BLOCKING METHODS //////////////////
//! Returns the analog values of both pins, measured at the same time by the two ADC modules.
/** It waits until the values are read and then returns the result as a struct Sync_result,
* use Sync_result.result_adc0 and Sync_result.result_adc1.
* If a comparison has been set up and fails, it will return ADC_ERROR_VALUE in both fields of the struct.
* This function is interrupt safe, so it will restore the adc to the state it was before being called
*/
Sync_result analogSynchronizedRead(uint8_t pin0, uint8_t pin1);
Sync_result analogSyncRead(uint8_t pin0, uint8_t pin1) __attribute__((always_inline)) {return analogSynchronizedRead(pin0, pin1);}
//! Returns the differential analog values of both sets of pins, measured at the same time by the two ADC modules.
/** It waits until the values are read and then returns the result as a struct Sync_result,
* use Sync_result.result_adc0 and Sync_result.result_adc1.
* If a comparison has been set up and fails, it will return ADC_ERROR_VALUE in both fields of the struct.
* This function is interrupt safe, so it will restore the adc to the state it was before being called
*/
Sync_result analogSynchronizedReadDifferential(uint8_t pin0P, uint8_t pin0N, uint8_t pin1P, uint8_t pin1N);
Sync_result analogSyncReadDifferential(uint8_t pin0P, uint8_t pin0N, uint8_t pin1P, uint8_t pin1N) __attribute__((always_inline)) {
return analogSynchronizedReadDifferential(pin0P, pin0N, pin1P, pin1N);
}
/////////////// SYNCHRONIZED NON-BLOCKING METHODS //////////////
//! Starts an analog measurement at the same time on the two ADC modules
/** It returns inmediately, get value with readSynchronizedSingle().
* If the pin is incorrect it returns false
* If this function interrupts a measurement, it stores the settings in adc_config
*/
bool startSynchronizedSingleRead(uint8_t pin0, uint8_t pin1);
//! Start a differential conversion between two pins (pin0P - pin0N) and (pin1P - pin1N)
/** It returns inmediately, get value with readSynchronizedSingle().
* \param pin0P, pin1P must be A10 or A12.
* \param pin0N, pin1N must be A11 (if pinP=A10) or A13 (if pinP=A12).
* Other pins will return false.
* If this function interrupts a measurement, it stores the settings in adc_config
*/
bool startSynchronizedSingleDifferential(uint8_t pin0P, uint8_t pin0N, uint8_t pin1P, uint8_t pin1N);
//! Reads the analog value of a single conversion.
/**
* \return the converted value.
*/
Sync_result readSynchronizedSingle();
///////////// SYNCHRONIZED CONTINUOUS CONVERSION METHODS ////////////
//! Starts a continuous conversion in both ADCs simultaneously
/** Use readSynchronizedContinuous to get the values
*
*/
bool startSynchronizedContinuous(uint8_t pin0, uint8_t pin1);
//! Starts a continuous differential conversion in both ADCs simultaneously
/** Use readSynchronizedContinuous to get the values
*
*/
bool startSynchronizedContinuousDifferential(uint8_t pin0P, uint8_t pin0N, uint8_t pin1P, uint8_t pin1N);
//! Returns the values of both ADCs.
Sync_result readSynchronizedContinuous();
//! Stops synchronous continuous conversion
void stopSynchronizedContinuous();
//! Translate pin number to SC1A nomenclature
// should this be a constexpr?
static const uint8_t channel2sc1aADC0[44];
#if ADC_NUM_ADCS>1
//! Translate pin number to SC1A nomenclature
static const uint8_t channel2sc1aADC1[44];
#endif
//! Translate pin number to SC1A nomenclature for differential pins
/** uses base A10, that is, channel2sc1a_diff_ADC0[0] corresponds to pin A10.
*/
static const uint8_t channel2sc1a_diff_ADC0[4];
#if ADC_NUM_ADCS>1
static const uint8_t channel2sc1a_diff_ADC1[4];
#endif
//! Translate SC1A to pin number
static const uint8_t sc1a2channelADC0[44];
#if ADC_NUM_ADCS>1
static const uint8_t sc1a2channelADC1[44];
#endif
protected:
private:
const uint8_t num_ADCs = ADC_NUM_ADCS;
};
#ifdef __cplusplus
}
#endif
#endif // ADC_H