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.

Profile List Problem

Member ✭✭
edited February 2017 in SmartSDR API
The following code exists in Radio.cs @ 7502

                case "tx":
                    if (_profileTXList.Contains(profile_name))   {
                        _profileTXSelection = profile_name;
                        RaisePropertyChanged("ProfileTXSelection");
                    }
                    else    {
                        Debug.WriteLine("Profile List Problem!");
                    }
                    break;

What I think is weird, conscious ignorance, is this condition is only flagged for the tx profile not the global, mic, or displays.
This line is preceded by the following statuses from the radio.

received status S5B89EDCD|profile tx current=
Profile List Problem!
received status S5B89EDCD|profile mic current=

Is this something that you guys wanted to capture or track? I am seeing it for profile mic as well, as you can see.

thanks,
Walt - kz1f

Answers

  • Administrator, FlexRadio Employee admin
    edited February 2017
    The code mentioned was written to debug a tx profile issue. Note that Debug statements are ignored when compiling in release mode. We will often leave debug code in place for future reference when looking into a problem.
  • Member ✭✭
    edited November 2016
    Thanks Eric, I did not know that about DebugWrite. I just learned my 'something new' today, so I suppose I can go back to bed.

Leave a Comment