Welcome to the new FlexRadio Community! Please review the new Community Rules and other important new Community information on the Message Board.
If you are having a problem, please refer to the product documentation or check the Help Center for known solutions.
Need technical support from FlexRadio? It's as simple as Creating a HelpDesk ticket.

Has V3 fixed the 4 year old PTT in CW bug?

2»

Answers

  • TF4M
    TF4M Member ✭✭
    edited January 2020
    I wrote this some time ago. "I just checked for this on my 6600M running v3 and the radio mutes properly when the ATU is on. When the ATU is set to Bypass it does not mute."

    And today Jan 2, 2020  the radio does not mute whether the ATU is on or off.  My 6600M appears to be possessed by demons, when will Flex take note of these problems?
  • Bill -VA3WTB
    Bill -VA3WTB Member ✭✭✭
    edited January 2020
    TF4M,, I believe Flex is aware of them.
  • TF4M
    TF4M Member ✭✭
    edited January 2020
    Bill, thank you I hope so. 

    I am using very large separate RX antennas on Top Band, and it appears to me that since the receiver is not muted during transmit, that my own transmissions are getting back into the radio at a very high level and possibly a slight processing delay, throwing me completely off when using a paddle.   

    I will probably take the radio to the local shooting range if there is no fix promptly.
      
    Flex should consider the possible impact to their sales if a basic issue is not dealt with in a timely manner.   4 years?  Not acceptable.
  • Douglas Maxwell
    Douglas Maxwell Member ✭✭
    edited January 2020
    My limit was 3 years and I chose an FTDX101D over a 6600 due to this issue. I use my 6500 occasionally, but can’t stand it on CW, a real shame.
  • KF4HR
    KF4HR Member ✭✭
    edited January 2020
  • [Deleted User]
    edited April 2020
    FRS is not going to let us know what is going on. The bugs have been there for 4 years they're not gonna get fixed.Just about any other company works on them almost immediately. We will just have to deal with the bugs. I imagine they're all on that Ratheon contract as there have been no updates in a long time now.
  • Bill -VA3WTB
    Bill -VA3WTB Member ✭✭✭
    edited January 2020
  • [Deleted User]
    edited April 2020
    I do not consider a 4 year old bug in CW a "want". It is a major bug that no other radio out there has. How about they just surprise us and just fix the bugs as I don't want to know what they are working on.
  • Bill -VA3WTB
    Bill -VA3WTB Member ✭✭✭
    edited January 2020
    Lets hope!!
  • KF4HR
    KF4HR Member ✭✭
    edited January 2020
    Bill I don't think anyone is slinging mud at Flex, just stating facts.   
  • [Deleted User]
    edited January 2020
    I certainly wasn't . . . Just stating a truth. This is getting real old with the bugs not getting fixed.
  • KC2QMA_John
    KC2QMA_John Member ✭✭
    edited January 2020
  • TF4M
    TF4M Member ✭✭
    edited April 2020
    I have to backtrack a bit.  Going through all the settings, I just discovered that FDX was activated in my radio.

    This certainly explains the racket when I had another slice open on the same band and I am sorry if I was harsh in my judgment.

    I have now set a delay of 300mS (!) in the TX Menu (front panel control on 6600M) and I now have relative quiet between CW elements when sending by hand.   

    It no longer appears to matter if the ATU is activated or not.   The radio sends a PTT signal to the amplifier when CW is sent, and releases it immediately and the Delay setting in the TX Menu seems to be added to this PTT signal, whereas other delay setting delay the start of transmission..  

    This delay seems to be a workable solution for me, although the original issue is how I think things should work.   PTT=MOX with a quick turnaround back to receive. 
      
  • Bill -VA3WTB
    Bill -VA3WTB Member ✭✭✭
    edited January 2020
    Remember the survey we all took part in? I hope that is steering Flex in their direction these days. I'm sure we all understand that we must allow time for some updates to roll out before we know for sure.
    Because of the complexity of SSDR development and weeks and months of testing I wonder if it is even possible to release more than 4 updates per year?

    I remember Gerald saying that , sure we can release more often but fewer things will get done in a long run.
    The new contract? Flex has hired more staff to help with the commercial side of the business. Flex has had a commercial side for many many years, and yet think of all the ham products they have developed? A government contract is nothing new. These contracts help benefit us all. Did you know that the Flex 6000 radios were born from a government contract? The technology in our radios were being used in a government project and Gerald thought, ummm what if we did that in our ham radios as well? Can we do it? and there we have it.
    Of course since the 6000 came out all the other radio companies are trying to do the same thing with their new products, but most are not willing to spend the money on big software development. So they have radios that have a direct sampling receiver but with hardware filters and an analog audio TX.

    Wonder what's next?
  • Bill -VA3WTB
    Bill -VA3WTB Member ✭✭✭
    edited January 2020
    TF4M, I don't do CW much I admit so this is not much a problem for me. Glad you discovered that FDX thing. I know others have worked with the delay timing as well but I hope Flex will work on a proper fix for it soon as well.
  • Steve London
    Steve London Member ✭✭
    I am only using the Winkey emulation in a Flex 6700. No hand sent CW. I want PTT to be activated while Winkey is sending the message, and no longer. I have played around with a SmartCAT PTT port and N1MM+, but no success - Flex returns to receive between words. Is there a way to hold PTT?
  • Flex broke this to keep the QSK operators happy, unfortunately the contest op who advises Flex also uses QSK. The vast majority of ops don't use QSK as most understand it leads to an early demise of your radio and your amplifier. All you are currently hearing during PTT is ADC static as it samples the open contact of the RX/TX changeover relay (i.e. no antenna). A simple mux is all that is required in the FPGA which feeds in 0x0000 when the PTT is engaged.

    dsp_data <= adc_data when ptt = '0' else (others => '0'); --combinatorial version

    or

    --sequential version

    process(clk)

    begin

    if rising_edge(clk) then

    if (reset = '1') then

    dsp_data <= (others => '0');

    else

    dsp_data <= (others => '0');

    if (ptt = '0') then

    dsp_data <= adc_data;

    end if;

    end if;

    end if;

    end process;

    If Flex fixes this bug, the QSK operators will moan that they are not happy with the RX/TX change-over speed (which only seems like its changed, it hasn't really). Flex has simply prioritised QSK operators over everyone else and are happy to kick this bug into the long grass. You are in the keep net now anyway.

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.