开云体育

ctrl + shift + ? for shortcuts
© 2025 开云体育

Re: CW on zbitx


 

开云体育

?Line 4527: ?modem poll is only being called every 20th tick

Modem_poll , then calls cw_poll -but this cannot happen any faster than every 20th tick with the current code

It is actually CW_POLL that really causes transmit to occur. But this cannot start any faster than every 20th tick because of the way the routines ?are being called.

It is easy enough to prove us wrong. Simply change the calls to modem pole to occur every fourth tick (instead of every 20th tick ) and if it doesn’t get a lot better than we’re wrong.

Wishing you the best!

Gordon




On Apr 3, 2025, at 14:10, Evan Hand via groups.io <elhandjr@...> wrote:

?
Farhan,
?
The issue is most likely caused by poling the state of the key 96000 times a second and only acting upon it in modem poll 10 times per second. The solution in the 64-bit branch was to adjust modem_poll to check multiple times in each call.? The transition states are being made but not acted upon.
?
From modem_pol()
?
/*
This file implements modems for :
Fldigi: We use fldigi as a proxy for all the modems that it implements
?
?
General:
?
There are three functions called to implement almost all the digital modes
1. There is the modem_init() that is used to initialize all the different modems.
2. The modem_poll() is called about 10 times a second to check if any transmit/receiver
changeover is needed, etc.
3. On receive, each time a block of samples is received, modem_rx() is called and?
it despatches the block of samples to the currently selected modem.?
The demodulators call write_console() to call the routines to display the decoded text.
4. During transmit, modem_next_sample() is repeatedly called by the sdr to accumulate
samples. In turn the sample generation routines call get_tx_data_byte() to read the next
text/ascii byte to encode.
?
*/
?
I need to look at the details more to verify that the comment is accurate.
?
73
Evan
AC9TU

Join [email protected] to automatically receive all group messages.