Fix incorrect macro guard in the UC3 EndpointStream header file.
[pub/USBasp.git] / LUFA / Drivers / Peripheral / AVR8 / ADC_AVR8.h
1 /*
2 LUFA Library
3 Copyright (C) Dean Camera, 2011.
4
5 dean [at] fourwalledcubicle [dot] com
6 www.lufa-lib.org
7 */
8
9 /*
10 Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com)
11
12 Permission to use, copy, modify, distribute, and sell this
13 software and its documentation for any purpose is hereby granted
14 without fee, provided that the above copyright notice appear in
15 all copies and that both that the copyright notice and this
16 permission notice and warranty disclaimer appear in supporting
17 documentation, and that the name of the author not be used in
18 advertising or publicity pertaining to distribution of the
19 software without specific, written prior permission.
20
21 The author disclaim all warranties with regard to this
22 software, including all implied warranties of merchantability
23 and fitness. In no event shall the author be liable for any
24 special, indirect or consequential damages or any damages
25 whatsoever resulting from loss of use, data or profits, whether
26 in an action of contract, negligence or other tortious action,
27 arising out of or in connection with the use or performance of
28 this software.
29 */
30
31 /** \file
32 * \brief ADC Peripheral Driver (AVR8)
33 *
34 * On-chip Analogue-to-Digital converter (ADC) driver for supported U4, U6 and U7 model AVRs that contain an ADC
35 * peripheral internally.
36 *
37 * \note This file should not be included directly. It is automatically included as needed by the ADC driver
38 * dispatch header located in LUFA/Drivers/Peripheral/ADC.h.
39 */
40
41 /** \ingroup Group_ADC
42 * \defgroup Group_ADC_AVR8 ADC Peripheral Driver (AVR8)
43 *
44 * \section Sec_ModDescription Module Description
45 * On-chip Analogue-to-Digital converter (ADC) driver for supported U4, U6 and U7 model AVRs that contain an ADC
46 * peripheral internally.
47 *
48 * \note This file should not be included directly. It is automatically included as needed by the ADC driver
49 * dispatch header located in LUFA/Drivers/Peripheral/ADC.h.
50 *
51 * \section Sec_ExampleUsage Example Usage
52 * The following snippet is an example of how this module may be used within a typical
53 * application.
54 *
55 * \code
56 * // Initialise the ADC driver before first use
57 * ADC_Init(ADC_FREE_RUNNING | ADC_PRESCALE_32);
58 *
59 * // Must setup the ADC channel to read beforehand
60 * ADC_SetupChannel(1);
61 *
62 * // Perform a single conversion of the ADC channel 1
63 * ADC_GetChannelReading(ADC_REFERENCE_AVCC | ADC_RIGHT_ADJUSTED | ADC_CHANNEL1);
64 * printf("Conversion Result: %d\r\n", ADC_GetResult());
65 *
66 * // Start reading ADC channel 1 in free running (continuous conversion) mode
67 * ADC_StartReading(ADC_REFERENCE_AVCC | ADC_RIGHT_ADJUSTED | ADC_CHANNEL1);
68 * while (!(ADC_IsReadingComplete())) {};
69 * printf("Conversion Result: %d\r\n", ADC_GetResult());
70 * \endcode
71 *
72 * @{
73 */
74
75 #ifndef __ADC_AVR8_H__
76 #define __ADC_AVR8_H__
77
78 /* Includes: */
79 #include "../../../Common/Common.h"
80
81 /* Enable C linkage for C++ Compilers: */
82 #if defined(__cplusplus)
83 extern "C" {
84 #endif
85
86 /* Preprocessor Checks: */
87 #if !defined(__INCLUDE_FROM_ADC_H)
88 #error Do not include this file directly. Include LUFA/Drivers/Peripheral/ADC.h instead.
89 #endif
90
91 #if !(defined(__AVR_AT90USB1286__) || defined(__AVR_AT90USB646__) || \
92 defined(__AVR_AT90USB1287__) || defined(__AVR_AT90USB647__) || \
93 defined(__AVR_ATmega16U4__) || defined(__AVR_ATmega32U4__) || \
94 defined(__AVR_ATmega32U6__))
95 #error The ADC peripheral driver is not currently available for your selected microcontroller model.
96 #endif
97
98 /* Private Interface - For use in library only: */
99 #if !defined(__DOXYGEN__)
100 /* Macros: */
101 #define _ADC_GET_MUX_MASK2(y) ADC_CHANNEL ## y
102 #define _ADC_GET_MUX_MASK(y) _ADC_GET_MUX_MASK2(y)
103 #endif
104
105 /* Public Interface - May be used in end-application: */
106 /* Macros: */
107 /** \name ADC Reference Configuration Masks */
108 //@{
109 /** Reference mask, for using the voltage present at the AVR's AREF pin for the ADC reference. */
110 #define ADC_REFERENCE_AREF 0
111
112 /** Reference mask, for using the voltage present at the AVR's AVCC pin for the ADC reference. */
113 #define ADC_REFERENCE_AVCC (1 << REFS0)
114
115 /** Reference mask, for using the internally generated 2.56V reference voltage as the ADC reference. */
116 #define ADC_REFERENCE_INT2560MV ((1 << REFS1) | (1 << REFS0))
117 //@}
118
119 /** \name ADC Result Adjustment Configuration Masks */
120 //@{
121 /** Left-adjusts the 10-bit ADC result, so that the upper 8 bits of the value returned by the
122 * \ref ADC_GetResult() macro contain the 8 most significant bits of the result.
123 */
124 #define ADC_LEFT_ADJUSTED (1 << ADLAR)
125
126 /** Right-adjusts the 10-bit ADC result, so that the lower 8 bits of the value returned by the
127 * \ref ADC_GetResult() macro contain the 8 least significant bits of the result.
128 */
129 #define ADC_RIGHT_ADJUSTED (0 << ADLAR)
130 //@}
131
132 /** \name ADC Mode Configuration Masks */
133 //@{
134 /** Sets the ADC mode to free running, so that conversions take place continuously as fast as the ADC
135 * is capable of at the given input clock speed.
136 */
137 #define ADC_FREE_RUNNING (1 << ADATE)
138
139 /** Sets the ADC mode to single conversion, so that only a single conversion will take place before
140 * the ADC returns to idle.
141 */
142 #define ADC_SINGLE_CONVERSION (0 << ADATE)
143 //@}
144
145 /** \name ADC Prescaler Configuration Masks */
146 //@{
147 /** Sets the ADC input clock to prescale by a factor of 2 the AVR's system clock. */
148 #define ADC_PRESCALE_2 (1 << ADPS0)
149
150 /** Sets the ADC input clock to prescale by a factor of 4 the AVR's system clock. */
151 #define ADC_PRESCALE_4 (1 << ADPS1)
152
153 /** Sets the ADC input clock to prescale by a factor of 8 the AVR's system clock. */
154 #define ADC_PRESCALE_8 ((1 << ADPS0) | (1 << ADPS1))
155
156 /** Sets the ADC input clock to prescale by a factor of 16 the AVR's system clock. */
157 #define ADC_PRESCALE_16 (1 << ADPS2)
158
159 /** Sets the ADC input clock to prescale by a factor of 32 the AVR's system clock. */
160 #define ADC_PRESCALE_32 ((1 << ADPS2) | (1 << ADPS0))
161
162 /** Sets the ADC input clock to prescale by a factor of 64 the AVR's system clock. */
163 #define ADC_PRESCALE_64 ((1 << ADPS2) | (1 << ADPS1))
164
165 /** Sets the ADC input clock to prescale by a factor of 128 the AVR's system clock. */
166 #define ADC_PRESCALE_128 ((1 << ADPS2) | (1 << ADPS1) | (1 << ADPS0))
167 //@}
168
169 /** \name ADC MUX Masks */
170 //@{
171 /** MUX mask define for the ADC0 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading(). */
172 #define ADC_CHANNEL0 (0x00 << MUX0)
173
174 /** MUX mask define for the ADC1 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading(). */
175 #define ADC_CHANNEL1 (0x01 << MUX0)
176
177 #if !(defined(__AVR_ATmega16U4__) || defined(__AVR_ATmega32U4__) || defined(__DOXYGEN__))
178 /** MUX mask define for the ADC2 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading().
179 *
180 * \note Not available on all AVR models.
181 */
182 #define ADC_CHANNEL2 (0x02 << MUX0)
183
184 /** MUX mask define for the ADC3 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading().
185 *
186 * \note Not available on all AVR models.
187 */
188 #define ADC_CHANNEL3 (0x03 << MUX0)
189 #endif
190
191 /** MUX mask define for the ADC4 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading(). */
192 #define ADC_CHANNEL4 (0x04 << MUX0)
193
194 /** MUX mask define for the ADC5 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading(). */
195 #define ADC_CHANNEL5 (0x05 << MUX0)
196
197 /** MUX mask define for the ADC6 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading(). */
198 #define ADC_CHANNEL6 (0x06 << MUX0)
199
200 /** MUX mask define for the ADC7 channel of the ADC. See \ref ADC_StartReading and \ref ADC_GetChannelReading. */
201 #define ADC_CHANNEL7 (0x07 << MUX0)
202
203 /** MUX mask define for the internal 1.1V bandgap channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading(). */
204 #define ADC_1100MV_BANDGAP (0x1E << MUX0)
205
206 #if (defined(__AVR_ATmega16U4__) || defined(__AVR_ATmega32U4__) || defined(__DOXYGEN__))
207 /** MUX mask define for the ADC8 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading().
208 *
209 * \note Not available on all AVR models.
210 */
211 #define ADC_CHANNEL8 ((1 << 8) | (0x00 << MUX0))
212
213 /** MUX mask define for the ADC9 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading().
214 *
215 * \note Not available on all AVR models.
216 */
217 #define ADC_CHANNEL9 ((1 << 8) | (0x01 << MUX0))
218
219 /** MUX mask define for the ADC10 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading().
220 *
221 * \note Not available on all AVR models.
222 */
223 #define ADC_CHANNEL10 ((1 << 8) | (0x02 << MUX0))
224
225 /** MUX mask define for the ADC11 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading().
226 *
227 * \note Not available on all AVR models.
228 */
229 #define ADC_CHANNEL11 ((1 << 8) | (0x03 << MUX0))
230
231 /** MUX mask define for the ADC12 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading().
232 *
233 * \note Not available on all AVR models.
234 */
235 #define ADC_CHANNEL12 ((1 << 8) | (0x04 << MUX0))
236
237 /** MUX mask define for the ADC13 channel of the ADC. See \ref ADC_StartReading() and \ref ADC_GetChannelReading().
238 *
239 * \note Not available on all AVR models.
240 */
241 #define ADC_CHANNEL13 ((1 << 8) | (0x05 << MUX0))
242
243 /** MUX mask define for the internal temperature sensor channel of the ADC. See \ref ADC_StartReading() and
244 * \ref ADC_GetChannelReading().
245 *
246 * \note Not available on all AVR models.
247 */
248 #define ADC_INT_TEMP_SENS ((1 << 8) | (0x07 << MUX0))
249 #endif
250
251 /** Retrieves the ADC MUX mask for the given ADC channel number.
252 *
253 * \note This macro will only work correctly on channel numbers that are compile-time
254 * constants defined by the preprocessor.
255 *
256 * \param[in] Channel Index of the ADC channel whose MUX mask is to be retrieved.
257 */
258 #define ADC_GET_CHANNEL_MASK(Channel) _ADC_GET_MUX_MASK(Channel)
259 //@}
260
261 /* Inline Functions: */
262 /** Configures the given ADC channel, ready for ADC conversions. This function sets the
263 * associated port pin as an input and disables the digital portion of the I/O to reduce
264 * power consumption.
265 *
266 * \note This must only be called for ADC channels with are connected to a physical port
267 * pin of the AVR, denoted by its special alternative function ADCx.
268 * \n\n
269 *
270 * \note The channel number must be specified as an integer, and <b>not</b> a \c ADC_CHANNEL* mask.
271 *
272 * \param[in] ChannelIndex ADC channel number to set up for conversions.
273 */
274 static inline void ADC_SetupChannel(const uint8_t ChannelIndex)
275 {
276 #if (defined(__AVR_AT90USB1286__) || defined(__AVR_AT90USB646__) || \
277 defined(__AVR_AT90USB1287__) || defined(__AVR_AT90USB647__) || \
278 defined(__AVR_ATmega32U6__))
279 DDRF &= ~(1 << ChannelIndex);
280 DIDR0 |= (1 << ChannelIndex);
281 #elif (defined(__AVR_ATmega16U4__) || defined(__AVR_ATmega32U4__))
282 if (ChannelIndex < 8)
283 {
284 DDRF &= ~(1 << ChannelIndex);
285 DIDR0 |= (1 << ChannelIndex);
286 }
287 else if (ChannelIndex == 8)
288 {
289 DDRD &= ~(1 << 4);
290 DIDR2 |= (1 << 0);
291 }
292 else if (ChannelIndex < 11)
293 {
294 DDRD &= ~(1 << (ChannelIndex - 3));
295 DIDR2 |= (1 << (ChannelIndex - 8));
296 }
297 else
298 {
299 DDRB &= ~(1 << (ChannelIndex - 7));
300 DIDR2 |= (1 << (ChannelIndex - 8));
301 }
302 #endif
303 }
304
305 /** De-configures the given ADC channel, re-enabling digital I/O mode instead of analog. This
306 * function sets the associated port pin as an input and re-enabled the digital portion of
307 * the I/O.
308 *
309 * \note This must only be called for ADC channels with are connected to a physical port
310 * pin of the AVR, denoted by its special alternative function ADCx.
311 * \n\n
312 *
313 * \note The channel number must be specified as an integer, and <b>not</b> a \c ADC_CHANNEL* mask.
314 *
315 * \param[in] ChannelIndex ADC channel number to set up for conversions.
316 */
317 static inline void ADC_DisableChannel(const uint8_t ChannelIndex)
318 {
319 #if (defined(__AVR_AT90USB1286__) || defined(__AVR_AT90USB646__) || \
320 defined(__AVR_AT90USB1287__) || defined(__AVR_AT90USB647__) || \
321 defined(__AVR_ATmega32U6__))
322 DDRF &= ~(1 << ChannelIndex);
323 DIDR0 &= ~(1 << ChannelIndex);
324 #elif (defined(__AVR_ATmega16U4__) || defined(__AVR_ATmega32U4__))
325 if (ChannelIndex < 8)
326 {
327 DDRF &= ~(1 << ChannelIndex);
328 DIDR0 &= ~(1 << ChannelIndex);
329 }
330 else if (ChannelIndex == 8)
331 {
332 DDRD &= ~(1 << 4);
333 DIDR2 &= ~(1 << 0);
334 }
335 else if (ChannelIndex < 11)
336 {
337 DDRD &= ~(1 << (ChannelIndex - 3));
338 DIDR2 &= ~(1 << (ChannelIndex - 8));
339 }
340 else
341 {
342 DDRB &= ~(1 << (ChannelIndex - 7));
343 DIDR2 &= ~(1 << (ChannelIndex - 8));
344 }
345 #endif
346 }
347
348 /** Starts the reading of the given channel, but does not wait until the conversion has completed.
349 * Once executed, the conversion status can be determined via the \ref ADC_IsReadingComplete() macro and
350 * the result read via the \ref ADC_GetResult() macro.
351 *
352 * If the ADC has been initialized in free running mode, calling this function once will begin the repeated
353 * conversions. If the ADC is in single conversion mode (or the channel to convert from is to be changed),
354 * this function must be called each time a conversion is to take place.
355 *
356 * \param[in] MUXMask ADC channel mask, reference mask and adjustment mask.
357 */
358 static inline void ADC_StartReading(const uint16_t MUXMask)
359 {
360 ADMUX = MUXMask;
361
362 #if (defined(__AVR_ATmega16U4__) || defined(__AVR_ATmega32U4__) || defined(__DOXYGEN__))
363 if (MUXMask & (1 << 8))
364 ADCSRB |= (1 << MUX5);
365 else
366 ADCSRB &= ~(1 << MUX5);
367 #endif
368
369 ADCSRA |= (1 << ADSC);
370 }
371
372 /** Indicates if the current ADC conversion is completed, or still in progress.
373 *
374 * \return Boolean false if the reading is still taking place, or true if the conversion is
375 * complete and ready to be read out with \ref ADC_GetResult().
376 */
377 static inline bool ADC_IsReadingComplete(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
378 static inline bool ADC_IsReadingComplete(void)
379 {
380 return ((ADCSRA & (1 << ADIF)) ? true : false);
381 }
382
383 /** Retrieves the conversion value of the last completed ADC conversion and clears the reading
384 * completion flag.
385 *
386 * \return The result of the last ADC conversion as an unsigned value.
387 */
388 static inline uint16_t ADC_GetResult(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
389 static inline uint16_t ADC_GetResult(void)
390 {
391 ADCSRA |= (1 << ADIF);
392 return ADC;
393 }
394
395 /** Performs a complete single reading from channel, including a polling spin-loop to wait for the
396 * conversion to complete, and the returning of the converted value.
397 *
398 * \note For free running mode, the automated conversions should be initialized with a single call
399 * to \ref ADC_StartReading() to select the channel and begin the automated conversions, and
400 * the results read directly from the \ref ADC_GetResult() instead to reduce overhead.
401 *
402 * \param[in] MUXMask Mask comprising of an ADC channel mask, reference mask and adjustment mask.
403 */
404 static inline uint16_t ADC_GetChannelReading(const uint16_t MUXMask) ATTR_WARN_UNUSED_RESULT;
405 static inline uint16_t ADC_GetChannelReading(const uint16_t MUXMask)
406 {
407 ADC_StartReading(MUXMask);
408
409 while (!(ADC_IsReadingComplete()));
410
411 return ADC_GetResult();
412 }
413
414 /** Initialises the ADC, ready for conversions. This must be called before any other ADC operations.
415 * The "mode" parameter should be a mask comprised of a conversion mode (free running or single) and
416 * prescaler masks.
417 *
418 * \param[in] Mode Mask of ADC prescale and mode settings.
419 */
420 static inline void ADC_Init(uint8_t Mode) ATTR_ALWAYS_INLINE;
421 static inline void ADC_Init(uint8_t Mode)
422 {
423 ADCSRA = ((1 << ADEN) | Mode);
424 }
425
426 /** Turns off the ADC. If this is called, any further ADC operations will require a call to
427 * \ref ADC_Init() before the ADC can be used again.
428 */
429 static inline void ADC_Disable(void) ATTR_ALWAYS_INLINE;
430 static inline void ADC_Disable(void)
431 {
432 ADCSRA = 0;
433 }
434
435 /** Indicates if the ADC is currently enabled.
436 *
437 * \return Boolean \c true if the ADC subsystem is currently enabled, \c false otherwise.
438 */
439 static inline bool ADC_GetStatus(void) ATTR_WARN_UNUSED_RESULT ATTR_ALWAYS_INLINE;
440 static inline bool ADC_GetStatus(void)
441 {
442 return ((ADCSRA & (1 << ADEN)) ? true : false);
443 }
444
445 /* Disable C linkage for C++ Compilers: */
446 #if defined(__cplusplus)
447 }
448 #endif
449
450 #endif
451
452 /** @} */
453