* \param[in] Mode Mask of ADC settings, including adjustment, prescale, mode and reference\r
*/\r
static inline void ADC_Init(uint8_t Mode);\r
- \r
+\r
/** Turns off the ADC. If this is called, any further ADC operations will require a call to\r
* \ref ADC_Init() before the ADC can be used again.\r
*/\r
- static inline void ADC_Off(void);\r
+ static inline void ADC_ShutDown(void);\r
\r
/** Indicates if the ADC is currently enabled.\r
*\r
#else\r
#define ADC_Init(mode) MACROS{ ADCSRA = ((1 << ADEN) | mode); }MACROE\r
\r
- #define ADC_Off() MACROS{ ADCSRA = 0; }MACROE\r
+ #define ADC_ShutDown() MACROS{ ADCSRA = 0; }MACROE\r
\r
#define ADC_GetStatus() ((ADCSRA & (1 << ADEN)) ? true : false)\r
\r