From 3c02ba5f329c95ace40dc373e23b8bcd0bb018a0 Mon Sep 17 00:00:00 2001 From: batt Date: Sat, 10 Oct 2009 10:22:35 +0000 Subject: [PATCH] Add documentation. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3060 38d2e660-2303-0410-9eaa-f027e97ec537 --- bertos/hw/hw_afsk.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bertos/hw/hw_afsk.h b/bertos/hw/hw_afsk.h index e02d9e50..0cd4ce36 100644 --- a/bertos/hw/hw_afsk.h +++ b/bertos/hw/hw_afsk.h @@ -52,7 +52,7 @@ * and call afsk_adc_isr(), passing the context and the sample. * * \param ch channel to be used for AFSK demodulation. - * \param ctx AFSK context. This parameter must be saved and + * \param ctx AFSK context (\see Afsk). This parameter must be saved and * passed back to afsk_adc_isr() for every convertion. */ #define AFSK_ADC_INIT(ch, ctx) do { (void)ch, (void)ctx; } while (0) @@ -68,7 +68,7 @@ * the AFSK driver to call AFSK_DAC_IRQ_START(). * The ISR must then call afsk_dac_isr() passing the AFSK context. * \param ch DAC channel to be used for AFSK modulation. - * \param ctx AFSK context. This parameter must be saved and + * \param ctx AFSK context (\see Afsk). This parameter must be saved and * passed back to afsk_dac_isr() for every convertion. */ #define AFSK_DAC_INIT(ch, ctx) do { (void)ch, (void)ctx; } while (0) -- 2.25.1