Keyboard Shortcuts
ctrl + shift + ? :
Show all keyboard shortcuts
ctrl + g :
Navigate to a group
ctrl + shift + f :
Find
ctrl + / :
Quick actions
esc to dismiss
Likes
- Winfldigi
- Messages
Search
Newbie IC-7300 setup help?
Group- My IC-7300 works fine, using JS8CALL and a USB connection to a Win-11 PC. I'd like to get FLDIGI working, without having to change the IC-7300 or PC soundcard settings each time I switch between JS8CALL and FLDIGI. So far-
Thanks & 73, Jay W6CJ |
||||||
Re: IC-7300 keys but no power out
The 7300 needs to be in USB-D in order to receive audio from the computer.
USB-D will work fine with all software. Mike W9MDB ?
Worked before so it had to be something different. Worked perfectly before so what was different. Would not be able to receive and decode if not in USB-D. Would not be able to key transmit if not in USB-D. The one thing that was different was it was in USB. It needed to be, in addition to 50 other settings, in PKTUSB. THEN it worked as before. It is working now.
?
But hey, thank you!
--
73 Karl KI4ZUQ |
||||||
Re: IC-7300 keys but no power out
Mike Black
The 7300 needs to be in USB-D in order to receive audio from the computer.
toggle quoted message
Show quoted text
USB-D will work fine with all software. Mike W9MDB On Wednesday, August 28, 2024 at 06:04:05 PM CDT, Karl via groups.io <karlshumaker@...> wrote:
Karl & Group, ? Same here:?? IC7300 and JS8CALL working fine and don't want to change the IC-7300.? 7300 keys but no power out. tnx & 73 Jay W6CJ On Wed, Aug 28, 2024 at 8:44?AM Karl via?groups.io ? There is on here somewhere a step-by-step set-up for the IC-7300 for digital. What version of fldigi are you using? The very last thing that needs to be selected on fldigi is PKTUSB. Even if all other settings are correct and this last setting is USB it will not put out power! It will key the transmitter but no power out. -- 73 Karl KI4ZUQ |
||||||
Re: IC-7300 keys but no power out
Karl & Group,
?
Same here:??
IC7300 and JS8CALL working fine and don't want to change the IC-7300.? 7300 keys but no power out.
tnx & 73
Jay
W6CJ
On Wed, Aug 28, 2024 at 8:44?AM Karl via?
?
There is on here somewhere a step-by-step set-up for the IC-7300 for digital. What version of fldigi are you using? The very last thing that needs to be selected on fldigi is PKTUSB. Even if all other settings are correct and this last setting is USB it will not put out power! It will key the transmitter but no power out.
--
73 Karl KI4ZUQ |
||||||
Re: IC-7300 keys but no power out
Karl & Group, Same here:?? IC7300 and JS8CALL working fine and don't want to change the IC-7300.? 7300 keys but no power out. tnx & 73 Jay W6CJ On Wed, Aug 28, 2024 at 8:44?AM Karl via <karlshumaker=yahoo.com_at_groups.io_lastradioman@...> wrote:
|
||||||
Re: QMX not transmitting RTTY from fldigi... What could be the reason?
Ah, this probably explains my problem!
I have no Tx on my QMX with FLDIGI. I have been struggling to understand how PTT is implemented in the QMX. WSJT-X works fine so I was thinking it was FLDIGI, but now see it looks like an incompatibility between the two. Maybe I¡¯ll try an earlier version that to see which one does work. 73 Paul G3WYW |
||||||
Re: IC-7300 keys but no power out
Cliff
¿ªÔÆÌåÓýCheck fldigi soundcard settings. Also the Tx attenuator, lower right corner fldigi. If too low no power out.73, Cliff, AE5ZA
|
||||||
IC-7300 keys but no power out
Works on WSJT-X and JS8call: click tune button, keys transmit, radio shows selected power, TX lights up. All that on fldigi shows line on waterfall, tile showing elapsed time turns maroon and counts up but no power shows on radio. All hamlib settings as before and checked radio settings but they are the same for all modes mentioned. Radio transmits and shows power out on CW.
?
WHAT is different with fldigi? Worked perfect in the past....
--
73 Karl KI4ZUQ |
||||||
Re: FLRIG 2.0.04 + TS590SG, Meters Display no SWR or ALC
Mike Black
And the wording in the manual is really funky...they do say you get 3 reading but the format they only show 1 reading. It should be RMP1P2P2P2P2P3P3P3P3P4P4P4P4; And P1 is always 0 Mike W9MDB
On Wednesday, August 28, 2024 at 06:27:22 AM CDT, Dave <w1hkj@...> wrote:
Eric, Your code looks fine.? Please be more precise on the three readings at once.? That seems to be an undocumented feature that we should support for the SG David P.S.? My replies are tardy as I am a newlywed trying to merge two houses of "stuff".? I am 85 and the bride is 77.? We have too much stuff.? Alabama only recognizes a civil wedding between consenting parties.? That is in place.? This Saturday there will be a church wedding with family attendance.? Next week will be our honeymoon.? I will try to respond before we depart. On 8/22/24 12:59, Eric Hidle wrote:
I have gotten the SWR meter working and it has a
reasonably-accurate scaling with a lookup table based on the
rig scaling vs the scaling of the meter in flrig. Here's the
code for the get_swr function that goes into TS590SG.cxx
int
RIG_TS590SG::get_swr(void)
{ ? ? ? ? int mtr = 0; ? ? ? ? cmd = "RM;"; ? ? ? ? sendCommand(cmd); ? ? ? ? if (wait_char(';', 8, 100, "get SWR", ASC) < 8) return 0; ? ? ? ? sscanf(replystr.c_str(), "RM1%d", &mtr); ? ? ? ? if (( 1 <= mtr ) && ( mtr <= 6 )) ? ? ? ? { ? ? ? ? ? mtr = (mtr * 12) / 6; ? ? ? ? } ? ? ? ? else if (( 7 <= mtr ) && ( mtr <= 11 )) ? ? ? ? { ? ? ? ? ? mtr = (mtr * 25) / 11; ? ? ? ? } ? ? ? ? else if (( 12 <= mtr ) && ( mtr <= 15 )) ? ? ? ? { ? ? ? ? ? mtr = 25 + ((mtr - 12)*7); ? ? ? ? } ? ? ? ? else if ( mtr >= 16 ) ? ? ? ? { ? ? ? ? ? mtr = (mtr * 100) / 30; ? ? ? ? } ? ? ? ? if (mtr > 100) mtr = 100; ? ? ? ? return mtr; } And the result:
My get_alc doesn't seem to work, and I think it has to do
with the 590SG always returning all three meter readings on a
single response line. SWR is the first of the three, which is
why I think it works with this function. I'm not sure how to
scan for the third response. ? ? ? ? sscanf(replystr.c_str(),
"RM3%d", &alc_val); doesn't seem to pull it out.
Cheers
Eric
On Tue, 20 Aug 2024 at 10:09,
Wayne Carpenter KN2Z @minicowman via <mwcarpe=[email protected]>
wrote:
|
||||||
Re: FLRIG 2.0.04 + TS590SG, Meters Display no SWR or ALC
Mike Black
Hamlib has this logic for the TS480 and TS590 models ? ? retval = sscanf(ackbuf, "RM1%d;RM2%d;RM3%d;", swr, comp, alc);
On Wednesday, August 28, 2024 at 06:27:22 AM CDT, Dave <w1hkj@...> wrote:
Eric, Your code looks fine.? Please be more precise on the three readings at once.? That seems to be an undocumented feature that we should support for the SG David P.S.? My replies are tardy as I am a newlywed trying to merge two houses of "stuff".? I am 85 and the bride is 77.? We have too much stuff.? Alabama only recognizes a civil wedding between consenting parties.? That is in place.? This Saturday there will be a church wedding with family attendance.? Next week will be our honeymoon.? I will try to respond before we depart. On 8/22/24 12:59, Eric Hidle wrote:
I have gotten the SWR meter working and it has a
reasonably-accurate scaling with a lookup table based on the
rig scaling vs the scaling of the meter in flrig. Here's the
code for the get_swr function that goes into TS590SG.cxx
int
RIG_TS590SG::get_swr(void)
{ ? ? ? ? int mtr = 0; ? ? ? ? cmd = "RM;"; ? ? ? ? sendCommand(cmd); ? ? ? ? if (wait_char(';', 8, 100, "get SWR", ASC) < 8) return 0; ? ? ? ? sscanf(replystr.c_str(), "RM1%d", &mtr); ? ? ? ? if (( 1 <= mtr ) && ( mtr <= 6 )) ? ? ? ? { ? ? ? ? ? mtr = (mtr * 12) / 6; ? ? ? ? } ? ? ? ? else if (( 7 <= mtr ) && ( mtr <= 11 )) ? ? ? ? { ? ? ? ? ? mtr = (mtr * 25) / 11; ? ? ? ? } ? ? ? ? else if (( 12 <= mtr ) && ( mtr <= 15 )) ? ? ? ? { ? ? ? ? ? mtr = 25 + ((mtr - 12)*7); ? ? ? ? } ? ? ? ? else if ( mtr >= 16 ) ? ? ? ? { ? ? ? ? ? mtr = (mtr * 100) / 30; ? ? ? ? } ? ? ? ? if (mtr > 100) mtr = 100; ? ? ? ? return mtr; } And the result:
My get_alc doesn't seem to work, and I think it has to do
with the 590SG always returning all three meter readings on a
single response line. SWR is the first of the three, which is
why I think it works with this function. I'm not sure how to
scan for the third response. ? ? ? ? sscanf(replystr.c_str(),
"RM3%d", &alc_val); doesn't seem to pull it out.
Cheers
Eric
On Tue, 20 Aug 2024 at 10:09,
Wayne Carpenter KN2Z @minicowman via <mwcarpe=[email protected]>
wrote:
|
||||||
Re: FLRIG 2.0.04 + TS590SG, Meters Display no SWR or ALC
Hi David, congratulations on your nuptials! I am happy to hear this wonderful news. What I was saying with "three readings at once" was that the radio responds to an RM; command with a 24 character string containing responses for all three meter reading. So you get SWR, COMP, and ALC with a single RM; command. I found a where Filip added some code to handle this for the S and SG as well. Enjoy your honeymoon, and merging two houses. My fiancee and I are also in that process of consolidating and it is no fun at all. Several truckloads to the thrift shop and a couple of dumpsters and there is still no end in sight hi hi. 73 Eric On Wed, 28 Aug 2024 at 07:27, Dave via <w1hkj=[email protected]> wrote:
|
||||||
Re: FLRIG 2.0.04 + TS590SG, Meters Display no SWR or ALC
¿ªÔÆÌåÓýEric,Your code looks fine.? Please be more precise on the three readings at once.? That seems to be an undocumented feature that we should support for the SG David P.S.? My replies are tardy as I am a newlywed trying to merge two houses of "stuff".? I am 85 and the bride is 77.? We have too much stuff.? Alabama only recognizes a civil wedding between consenting parties.? That is in place.? This Saturday there will be a church wedding with family attendance.? Next week will be our honeymoon.? I will try to respond before we depart. On 8/22/24 12:59, Eric Hidle wrote:
|
||||||
Re: Where is URL for English language Fldigi?
Cliff
¿ªÔÆÌåÓýThat's good news Pat. Enjoy!73, Cliff, AE5ZA
|
||||||
Re: Where is URL for English language Fldigi?
Rich, thanks for reminding me of the http / https translation.? I never considered that.? This allowed be to get the current version of Fldig.
?
Cliff, RX-TX was set to UTF-8.? I was able to get the menus into English by uninstalling Fldigi and then deleting all folders associated with Fldigi.? I then restarted the computer and reinstalled the software.? Problem solved.? So, you were right,? it was some kind of configuration bobble.
?
Thanks everyone for your quick responses.
?
73
Pat N4ENF |
||||||
Re: flrig 2.0.05.66 development test version posted
We should also recall that some browsers change the http address to https, and that points elsewhere...the source of many complaints in the past, and many posts here as we researched why folks were getting redirected. The posts and discussions are here somewhere... ;-)
toggle quoted message
Show quoted text
~R~ On 2024-08-27 03:54:, Philip Rose via groups.io wrote:
Use not . |
||||||
Re: Where is URL for English language Fldigi?
We should also recall that some browsers change the http address to https, and that points elsewhere...the source of many complaints in the past, and many posts here as we researched why folks were getting redirected.
toggle quoted message
Show quoted text
~R~ On 2024-08-26 21:10:, Cliff wrote:
<> and click on the Download Fldigi column's top entry. |
||||||
Re: flrig 2.0.05.66 development test version posted
Use http:// not https://. Phil GM3ZZA On 27 August 2024, at 01:01, "Pat Turcotte via groups.io" <patmail01@...> wrote: These URL's take me to the British Sundial Society website.? I tried it from two different browsers.? What's going on? |
to navigate to use esc to dismiss