doxygen fix

ugfx_release_2.6
Joel Bodenmann 2013-04-10 13:59:38 +02:00
parent 1946749578
commit 542f8412a1
2 changed files with 19 additions and 0 deletions

View File

@ -70,7 +70,18 @@ typedef struct GadcLldNonTimerData_t {
* @notapi
* @{
*/
/**
* @param[in] adcp The ADC driver
* @param[in] buffer The sample buffer
* @param[in] n The amount of samples
*/
extern void GADC_ISR_CompleteI(ADCDriver *adcp, adcsample_t *buffer, size_t n);
/**
* @param[in] adcp The ADC driver
* @param[in] err ADC error
*/
extern void GADC_ISR_ErrorI(ADCDriver *adcp, adcerror_t err);
/**
* @}

View File

@ -61,7 +61,13 @@ typedef struct gaudin_params_t {
*
* @{
*/
/**
* @param[in] buffer The buffer
* @param[in] n The amount of samples
* */
extern void GAUDIN_ISR_CompleteI(audin_sample_t *buffer, size_t n);
extern void GAUDIN_ISR_ErrorI(void);
/**
* @}
@ -78,6 +84,8 @@ extern "C" {
/**
* @brief Initialise the driver
*
* @param[in] paud Initialisation parameters
*
* @api
*/
void gaudin_lld_init(const gaudin_params *paud);