* The "mode" parameter should be a mask comprised of a conversion mode (free running or single) and\r
* prescaler masks.\r
*\r
- * \param Mode Mask of ADC settings, including adjustment, prescale, mode and reference\r
+ * \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
* associated port pin as an input and disables the digital portion of the I/O to reduce\r
* power consumption.\r
*\r
- * \param Channel ADC channel number to set up for conversions\r
+ * \param[in] Channel ADC channel number to set up for conversions\r
*/\r
static inline void ADC_SetupChannel(const uint8_t Channel)\r
{\r
* Once executed, the conversion status can be determined via the \ref ADC_IsReadingComplete() macro and\r
* the result read via the \ref ADC_GetResult() macro.\r
*\r
- * \param MUXMask Mask comprising of an ADC channel number, reference mask and adjustment mask\r
+ * \param[in] MUXMask Mask comprising of an ADC channel number, reference mask and adjustment mask\r
*/\r
static inline void ADC_StartReading(const uint8_t MUXMask)\r
{\r
/** Performs a complete single reading from channel, including a polling spinloop to wait for the\r
* conversion to complete, and the returning of the converted value.\r
*\r
- * \param MUXMask Mask comprising of an ADC channel number, reference mask and adjustment mask\r
+ * \param[in] MUXMask Mask comprising of an ADC channel number, reference mask and adjustment mask\r
*/\r
static inline uint16_t ADC_GetChannelReading(const uint8_t MUXMask) ATTR_WARN_UNUSED_RESULT;\r
static inline uint16_t ADC_GetChannelReading(const uint8_t MUXMask)\r