X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fnet%2Fafsk.c;h=a87754416d25872346baef3acac6e90581183639;hb=d1a6dcfe9a94f17f30cd681658b08a9531983197;hp=4a195891d9befe3e1a96c7d5b5dafc86fa854678;hpb=59e02d028bf407e4e2ccda823f5360d2e59f7ee4;p=bertos.git diff --git a/bertos/net/afsk.c b/bertos/net/afsk.c index 4a195891..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,13 +340,14 @@ 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. * - * \note The next DAC output sample is supplied by the Afsk driver through calling - * the AFSK_DAC_SET() callback. + * \return The next DAC output sample. */ -void afsk_dac_isr(Afsk *af) +uint8_t afsk_dac_isr(Afsk *af) { + AFSK_STROBE_ON(); + /* Check if we are at a start of a sample cycle */ if (af->sample_count == 0) { @@ -357,7 +358,8 @@ void afsk_dac_isr(Afsk *af) { AFSK_DAC_IRQ_STOP(af->dac_ch); af->sending = false; - return; + AFSK_STROBE_OFF(); + return 0; } else { @@ -396,7 +398,8 @@ void afsk_dac_isr(Afsk *af) { AFSK_DAC_IRQ_STOP(af->dac_ch); af->sending = false; - return; + AFSK_STROBE_OFF(); + return 0; } else af->curr_out = fifo_pop(&af->tx_fifo); @@ -453,8 +456,9 @@ void afsk_dac_isr(Afsk *af) af->phase_acc += af->phase_inc; af->phase_acc %= SIN_LEN; - AFSK_DAC_SET(af->dac_ch, sin_sample(af->phase_acc)); af->sample_count--; + AFSK_STROBE_OFF(); + return sin_sample(af->phase_acc); } @@ -531,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. */