Closed w0anm closed 2 months ago
Please change modem_cw.c code and change the following:
Line 447: FROM:
if (cw_next_symbol == CW_IDLE && cw_last_symbol == CW_DASH && (symbol_now & CW_DOT)){ cw_next_symbol = CW_DASH; }
TO:
if (cw_next_symbol == CW_IDLE && cw_last_symbol == CW_DASH && (symbol_now & CW_DOT)){ cw_next_symbol = CW_DOT; }
This change will fix the memory to send the proper sequence.
Added to new branch for testing. https://github.com/drexjj/sbitx/tree/drexjj-cwfix
This will be added to the main branch in the next release.
Thank you Chris!
Please change modem_cw.c code and change the following:
Line 447: FROM:
TO:
This change will fix the memory to send the proper sequence.