Add documentation.
authorbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Sat, 10 Oct 2009 10:22:35 +0000 (10:22 +0000)
committerbatt <batt@38d2e660-2303-0410-9eaa-f027e97ec537>
Sat, 10 Oct 2009 10:22:35 +0000 (10:22 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3060 38d2e660-2303-0410-9eaa-f027e97ec537

bertos/hw/hw_afsk.h

index e02d9e5087281503a89d5e2a031e31305e94dbc0..0cd4ce36afe3b049eb7155596321680607a47845 100644 (file)
@@ -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)