static inline void ADC_Init(uint8_t Mode);\r
\r
/** Turns off the ADC. If this is called, any further ADC operations will require a call to\r
- * ADC_Init() before the ADC can be used again.\r
+ * \ref ADC_Init() before the ADC can be used again.\r
*/\r
static inline void ADC_Off(void);\r
\r
/** Indicates if the current ADC conversion is completed, or still in progress.\r
*\r
* \return Boolean false if the reading is still taking place, or true if the conversion is\r
- * complete and ready to be read out with ADC_GetResult()\r
+ * complete and ready to be read out with \ref ADC_GetResult()\r
*/\r
static inline bool ADC_IsReadingComplete(void);\r
\r
}\r
\r
/** Starts the reading of the given channel, but does not wait until the conversion has completed.\r
- * Once executed, the conversion status can be determined via the ADC_IsReadingComplete() macro and\r
- * the result read via the ADC_GetResult() macro.\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
*/\r