From: batt Date: Sat, 10 Oct 2009 13:14:26 +0000 (+0000) Subject: Fix doc. X-Git-Tag: 2.3.0~10 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=3fc90c803d609a1444ceeb93432a814b206cbadc;p=bertos.git Fix doc. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@3073 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/bertos/net/afsk.c b/bertos/net/afsk.c index 3f96d4da..a8775441 100644 --- a/bertos/net/afsk.c +++ b/bertos/net/afsk.c @@ -209,7 +209,7 @@ static bool hdlc_parse(Hdlc *hdlc, bool bit, FIFOBuffer *fifo) * ADC ISR callback. * This function has to be called by the ADC ISR when a sample of the configured * channel is available. - * \param af Afsk context to operate one (\see Afsk). + * \param af Afsk context to operate on. * \param curr_sample current sample from the ADC. */ void afsk_adc_isr(Afsk *af, int8_t curr_sample) @@ -340,7 +340,7 @@ static void afsk_txStart(Afsk *af) * This function has to be called by the DAC ISR when a sample of the configured * channel has been converted out. * - * \param af Afsk context to operate one (\see Afsk). + * \param af Afsk context to operate on. * * \return The next DAC output sample. */ @@ -535,7 +535,7 @@ static void afsk_clearerr(KFile *fd) /** * Initialize an AFSK1200 modem. - * \param af Afsk context to operate one (\see Afsk). + * \param af Afsk context to operate on. * \param adc_ch ADC channel used by the demodulator. * \param dac_ch DAC channel used by the modulator. */ diff --git a/bertos/net/afsk.h b/bertos/net/afsk.h index bd82e660..4db5fe42 100644 --- a/bertos/net/afsk.h +++ b/bertos/net/afsk.h @@ -210,7 +210,7 @@ void afsk_init(Afsk *af, int adc_ch, int dac_ch); /** - * \name afsk filter type + * \name Afsk filter types. * $WIZ$ afsk_filter_list = "AFSK_BUTTERWORTH", "AFSK_CHEBYSHEV" * \{ */