开云体育

ctrl + shift + ? for shortcuts
© 2025 Groups.io

Re: FLDIGI Hanging

 

Hi to you all,
?
I try to test a little with this app for my Dad, HB9TJ.
But I installed on my Notebook, by enter the Information,
by the Country beginning to flickering, only close possible by the Task Manager.
?
If I only put City go step, Sound card OK.
Sometimes beginning flickering again, crash.
?
If I step without any Info show the main screen.
If I try to do something beginning flickering and crash.
?
Win 11 PRO, i7 Notebook, with High DPI.
?
To until NOW, I can't test the software.
?
Kind regards
HB9TJ Junior
?


Re: [nbems] C-Media PTT

 

NP Ken!? Glad it is working in windows.

On Tue, Oct 29, 2024 at 5:22?PM Kenneth G. Gordon via <kgordon2006=[email protected]> wrote:

On 29 Oct 2024 at 14:42, Don Rolph wrote:

>
> I sm using?the CM108 PTT in FLDIGI successfully on windows.
>
> What leads you to conclude that it does not work on Windows?

Yes. It works just great in WIndows: doesn't work in FreeBSD...yet!.

Sorry for the confusion.

Ken W7EKB

--
This email has been checked for viruses by Avast antivirus software.








--

73,
AB1PH
Don Rolph


Re: [nbems] C-Media PTT

 

On 29 Oct 2024 at 14:42, Don Rolph wrote:


I sm using?the CM108 PTT in FLDIGI successfully on windows.

What leads you to conclude that it does not work on Windows?
Yes. It works just great in WIndows: doesn't work in FreeBSD...yet!.

Sorry for the confusion.

Ken W7EKB

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com


--
Ken Gordon W7EKB


Re: fldigi 4.2.04 time questions and comments

 

Thanks for the prompt reply. I almost missed it, because when I read "bug in the Windows MinGW build" I thought it was space alien speak for something else ;-)

Got it.

That leaves 2 items on the table...

On 2024-10-29 12:31:, Mike Black via groups.io wrote:
On Tuesday, October 29, 2024 at 09:16:16 AM CDT, Rich NE1EE <thedustykey@...> wrote:
I wonder how fldigi get the local time and offset from Z?
So I guess from your example, this is not part of fldigi config, but a call to the host OS, and ~that~ reply depends on locale settings?

...and the minor comment....

While I was browsing the manual, I found a date mm/dd/yyyy used as an example of ISO8601 format, and I didn't think that was correct.
I appreciate your test and reply...thought I was misremembering how that was supposed to work...can't recall the last version I used IZDT in, but I think it was 2022...maybe 4.1.20 or so...

~R~


Re: [nbems] C-Media PTT

 

I sm using?the CM108 PTT in FLDIGI successfully on windows.

What leads you to conclude that it does not work on Windows?

On Tue, Oct 29, 2024 at 12:29?PM Kenneth G. Gordon via <kgordon2006=[email protected]> wrote:

Hello, All:

I am using one of Kevin's DRA units with Fldigi, VARA-HF and Winlink Express in my daily
traffic handling work. So far, it has proven to be the best digital interface I have ever used.

I prefer to use the C-Media sound-chip's PTT function which is available with any of Kevin's
(Masters Communications) DRA units as it is faster, more reliable, and is easier to contrtol
than using VOX to key the transmitter.

Fldigi has that funtion built into it, but it is apparently, only available to users of Linux.

I have two computers here which can dual-boot either Win10, or FreeBSD ver 14.1. I much
prefer to use FreeBSD over Win10 or any of the many distros of Linux.

However, although I have "translated" the UDEV setup, listed in the PTT setup of Fldigi which
is required for Linux to the correct settings of the UDEV-equivalent in FreeBSD (DEVD), I
cannot get the C-Media PTT to work. My only solution to that issue here is to activate keying
by VOX in the DRA unit when using FreeBSD. Although VOX can be acrivated in the DRA
unit by moving one jumper, I am concerned that doing so will affect the use of PTT keying via
the C-Media chip in Win10.

So, my question to Dave and to anyone else here, what, exactly, are the commands in Fldigi
which activate the C-Media chip's PTT function in Linux? I am hoping that by learning this, I
MAY be able to "translate" those commands to FreeBSD.

vy 73,

Ken W7EKB

--
This email has been checked for viruses by Avast antivirus software.








--

73,
AB1PH
Don Rolph


Re: fldigi 4.2.04 time questions and comments

Mike Black
 

Seems that's a bug in the Windows mingw build
It works in Linux.? This is a known problem.
There is a way to get the correct information from Windows shown below.
Maybe Dave can fix fldigi for this.

Code below in Linux
./mytime "%z %Z"
Result string is "-0500 CDT"

In mingw
$ ./mytime "%z %Z"
Result string is "Central Daylight Time Central Daylight Time"

#define _POSIX_THREAD_SAFE_FUNCTIONS

#include <time.h>
#include <stdio.h>
#include <stdlib.h>

int
main(int argc, char *argv[])
{
? ? char outstr[200];
? ? time_t t;
? ? struct tm *tmp, result;

? ? t = time(NULL);
? ? tmp = localtime_r(&t, &result);

? ? if (tmp == NULL)
? ? {
? ? ? ? perror("localtime");
? ? ? ? exit(EXIT_FAILURE);
? ? }

? ? if (strftime(outstr, sizeof(outstr), argv[1], tmp) == 0)
? ? {
? ? ? ? fprintf(stderr, "strftime returned 0");
? ? ? ? exit(EXIT_FAILURE);
? ? }

#ifdef _WIN32
? ? printf("Daylight = %d\n", _daylight);
? ? printf("TZ = %+05d\n", (_timezone/3600 - daylight)*-100);

? ? printf("TZName = %s\n", _tzname[_daylight]);
#endif
? ? printf("Result string is \"%s\"\n", outstr);
? ? exit(EXIT_SUCCESS);
}

Mike W9MDB

On Tuesday, October 29, 2024 at 09:16:16 AM CDT, Rich NE1EE <thedustykey@...> wrote:





I wonder how fldigi get the local time and offset from Z?
I looked in the manual, and didna find it.
I expected it more or less to be specified in the Operator Station dialog.
While I was browsing the manual, I found a date mm/dd/yyyy used as an example of ISO8601 format, and I didn't think that was correct.
I also tried %z (lc z) as an option, and it returned the same thing that %Z did.

73 Rich NE1EE
The Dusty Key
On the banks of the Piscataqua


C-Media PTT

 

Hello, All:

I am using one of Kevin's DRA units with Fldigi, VARA-HF and Winlink Express in my daily
traffic handling work. So far, it has proven to be the best digital interface I have ever used.

I prefer to use the C-Media sound-chip's PTT function which is available with any of Kevin's
(Masters Communications) DRA units as it is faster, more reliable, and is easier to contrtol
than using VOX to key the transmitter.

Fldigi has that funtion built into it, but it is apparently, only available to users of Linux.

I have two computers here which can dual-boot either Win10, or FreeBSD ver 14.1. I much
prefer to use FreeBSD over Win10 or any of the many distros of Linux.

However, although I have "translated" the UDEV setup, listed in the PTT setup of Fldigi which
is required for Linux to the correct settings of the UDEV-equivalent in FreeBSD (DEVD), I
cannot get the C-Media PTT to work. My only solution to that issue here is to activate keying
by VOX in the DRA unit when using FreeBSD. Although VOX can be acrivated in the DRA
unit by moving one jumper, I am concerned that doing so will affect the use of PTT keying via
the C-Media chip in Win10.

So, my question to Dave and to anyone else here, what, exactly, are the commands in Fldigi
which activate the C-Media chip's PTT function in Linux? I am hoping that by learning this, I
MAY be able to "translate" those commands to FreeBSD.

vy 73,

Ken W7EKB

--
This email has been checked for viruses by Avast antivirus software.
www.avast.com


--
Ken Gordon W7EKB


fldigi 4.2.04 time questions and comments

 

I wonder how fldigi get the local time and offset from Z?
I looked in the manual, and didna find it.
I expected it more or less to be specified in the Operator Station dialog.
While I was browsing the manual, I found a date mm/dd/yyyy used as an example of ISO8601 format, and I didn't think that was correct.
I also tried %z (lc z) as an option, and it returned the same thing that %Z did.

73 Rich NE1EE
The Dusty Key
On the banks of the Piscataqua


Re: Using "PTT via <TXRIG> and <RXRIG>" with N3FJP applications

Randy WB4SPB
 

I found the problem.
?
In my initial testing, I configured FLDigi to use Hamlib to control the radio, with PTT via CAT command. ?Later, when trying to use the N3FJP app, I brought up the logging application first, and it grabbed the com port. ?I then brought up FLDigi, and it did not complain about the inaccessible com port that it expected to use. In fact, in Rig Control->Hamlib, the "Use Hamlib" option had become unchecked. ?I assumed this was a smart reaction to the com port being unavailable, and that I could therefore use the N3FJP API to control PTT (it was working for other functions, after all).
?
HOWEVER, FLDigi seems to remember that "Use Hamlib" is selected in the configuration, even if it has become unchecked in real time (in the UI anyway). ?It apparently doesn't want to use the N3FJP API for PTT under these conditions.
?
I brought up FLDigi by itself, deselected "Use Hamlib" and saved the configuration. ?Then I was able to bring up the N3FJP app and get "PTT via <TXRIG> and <RXRIG>" to work properly via the N3FJP API.
?
Thanks for your help, and 73,
Randy WB4SPB


Re: Using "PTT via <TXRIG> and <RXRIG>" with N3FJP applications

Mike Black
 

4.2.06 -- just clicking the Tune button on and off.

SEND:
<CMD><RIGTX></CMD>
SEND:
<CMD><RIGRX></CMD>
SEND:

Mike W9MDB


Re: Using "PTT via <TXRIG> and <RXRIG>" with N3FJP applications

Randy WB4SPB
 

Hi Mike.
?
Yes, I have that option checked.
?
What version of FLDigi are you using, and what did you do to generate a <RIGTX> command?? I have tried the "Tune" and "T/R" buttons.
?
Thanks and 73,
Randy WB4SPB


Re: Using "PTT via <TXRIG> and <RXRIG>" with N3FJP applications

Mike Black
 

In FLDigi's N3FJP setup do you have "PTT via <RIGTX> and <RIGRX> checked?

I have a TS-590A here and it works just fine.? I see the RIGTX and RIGRX commands in FLDigi's data stream.

SEND:
<CMD><RIGTX></CMD>
SEND:
<CMD><PROGRAM></CMD>
RCVD:
<CMD><PROGRAMRESPONSE><PGM>N3FJP's Amateur Contact Log</PGM><VER>7.0.10</VER><APIVER>2.1</APIVER></CMD><crlf>




Mike W9MDB

On Saturday, October 26, 2024 at 09:08:16 AM CDT, Randy WB4SPB <wb4spb@...> wrote:





I'm using fldigi 4.2.06 with an N3FJP logging application.? For various reasons, I want N3FJP to control the radio (Kenwood TS-590SG in this case), but although the API integration with N3FJP succeeds in all other respects (e.g. frequency display in the fldigi UI, frequency control via the fldigi UI), fldigi doesn't send the <TXRIG> and <RXRIG> commands to initiate (or stop) transmission.? Other commands are visible in the TCP/IP Data Stream.

?

I looked through older posts, and it appears from /g/winfldigi/message/32632 and /g/winfldigi/message/33087 that this problem has been reported before and "might" have been fixed in an alpha release 4.1.23.29.? But if there was a fix there, it does not seem to have progressed to the current version.

?

I think I've configured per the documentation, but is there something I'm missing?? Or is this still a bug?

?

Thanks and 73,

Randy WB4SPB


Using "PTT via <TXRIG> and <RXRIG>" with N3FJP applications

Randy WB4SPB
 

I'm using fldigi 4.2.06 with an N3FJP logging application.? For various reasons, I want N3FJP to control the radio (Kenwood TS-590SG in this case), but although the API integration with N3FJP succeeds in all other respects (e.g. frequency display in the fldigi UI, frequency control via the fldigi UI), fldigi doesn't send the <TXRIG> and <RXRIG> commands to initiate (or stop) transmission.? Other commands are visible in the TCP/IP Data Stream.
?
I looked through older posts, and it appears from /g/winfldigi/message/32632 and /g/winfldigi/message/33087 that this problem has been reported before and "might" have been fixed in an alpha release 4.1.23.29.? But if there was a fix there, it does not seem to have progressed to the current version.
?
I think I've configured per the documentation, but is there something I'm missing?? Or is this still a bug?
?
Thanks and 73,
Randy WB4SPB


Re: Changing Themes #fldigi-parameters

 

Hi Dave,
?
You’re ?very welcome!
?
Graeme


Re: Changing Themes #fldigi-parameters

 

开云体育

Works great now. Thanks a lot for the tip.

Dave

On 10/24/2024 2:15 AM, G Davidson wrote:
Hi Dave,
?
It could be that RSID is set only to detect RSID signals only between the dotted lines a not the entire waterfall bandwidth. As a result you may have noticed RSID wasn’t triggering as often.?
?
If you right hand click the RSID button at the top right of Fldigi, an option to toggle the behaviour will appear and with that, the extra cursors removed. At the same time the color of the RSID button will change between green and red depending on your selection.?

I hope that helps!
?
Graeme
-- 
73's de NU4N

--
73'S DAVE NU4N


Re: Changing Themes #fldigi-parameters

 

Hi Dave,
?
It could be that RSID is set only to detect RSID signals only between the dotted lines a not the entire waterfall bandwidth. As a result you may have noticed RSID wasn’t triggering as often.?
?
If you right hand click the RSID button at the top right of Fldigi, an option to toggle the behaviour will appear and with that, the extra cursors removed. At the same time the color of the RSID button will change between green and red depending on your selection.?

I hope that helps!
?
Graeme


Re: Changing Themes #fldigi-parameters

 

开云体育

One little minor change I would like to change. my cursor over the incoming signal has 2 dotted lines every next the the signal on the waterfall. How do I get rid of the lines?

Thanks Dave

On 10/23/2024 8:13 AM, David Tucker wrote:

Thanks for the reply Graeme. I would have never thought to look at that setting let a lone finding it. Everything is back to normal.

Really appreciate your help.

Thanks Dave

On 10/22/2024 4:41 PM, G Davidson wrote:
Hi Dave,
?
Perhaps the UI setting shown in the message linked below will allow you to revert it. On mine, the default was “gtk +”
?
?
Graeme
-- 
73's de NU4N
-- 
73's de NU4N

--
73'S DAVE NU4N


Re: Changing Themes #fldigi-parameters

 

Glad to have been of help!
?
--
Graeme
?
On Wed, Oct 23, 2024 at 02:14 PM, Dave Tucker Nu4N wrote:

Thanks for the reply Graeme. I would have never thought to look at that setting let a lone finding it. Everything is back to normal.

Really appreciate your help.

Thanks Dave


Re: Changing Themes #fldigi-parameters

 

开云体育

Thanks for the reply Graeme. I would have never thought to look at that setting let a lone finding it. Everything is back to normal.

Really appreciate your help.

Thanks Dave

On 10/22/2024 4:41 PM, G Davidson wrote:
Hi Dave,
?
Perhaps the UI setting shown in the message linked below will allow you to revert it. On mine, the default was “gtk +”
?
?
Graeme
-- 
73's de NU4N

--
73'S DAVE NU4N


Re: Changing Themes #fldigi-parameters

 

Hi Dave,
?
Perhaps the UI setting shown in the message linked below will allow you to revert it. On mine, the default was “gtk +”
?
?
Graeme