Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TenTec 599 Eagle - front panel bandwidth knob does not work once BW is set via CAT #1055

Closed
peterdulowsky opened this issue Jun 6, 2022 · 0 comments
Labels
bug needs test Patches have been submitted but need testing to close issue
Milestone

Comments

@peterdulowsky
Copy link

peterdulowsky commented Jun 6, 2022

SNPRINTF(mdbuf, sizeof(mdbuf), "*R%cM%c" EOM "*R%cF%d" EOM,

This is causing issue with 599 Eagle. This rig is kind of specific in terms of setting the bandwidth. Once the bandwidth is set via CAT command *RFxx the bandwidth knob on the front panel stops working until next power up or issuing *RF0 command. However, such command is never sent from cqrlog and perhaps other SW.

More elegant solution would be:

  1. create tt599_set_mode function as a copy of tt565_set_mode
  2. register tt599_set_mode to TT599 rig structure in orion.h
  3. replace the quoted line with:
    SNPRINTF(mdbuf, sizeof(mdbuf), "*R%cM%c" EOM "*R%cF%d" EOM *"R%cF0" EOM,
    ttreceiver,
    ttmode,
    ttreceiver,
    (int)width,
    ttreceiver
    );

    and inrease mdbuf size by few bytes.

The outcome would be:

  1. The bandwidth can be normally set via CAT command and stays set till the bandwidth button is left untouched.
  2. Once the bandwidth button on the front panel is rotated it takes over the bandwidth settings (same as for setting VFO).

This has already been tested with TT599.

@peterdulowsky peterdulowsky changed the title FTenTec 599 Eagle - front panel bandwidth knob does not work once BW is set via CAT TenTec 599 Eagle - front panel bandwidth knob does not work once BW is set via CAT Jun 6, 2022
@mdblack98 mdblack98 added this to the 4.5 milestone Jun 6, 2022
@mdblack98 mdblack98 added bug fixed Issue has been fixed needs test Patches have been submitted but need testing to close issue and removed fixed Issue has been fixed labels Jun 6, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug needs test Patches have been submitted but need testing to close issue
Projects
None yet
Development

No branches or pull requests

2 participants