Re: [wsjt-devel] Required packages for JTSDK

2020-01-02 Thread Neil Zampella
FWIW... the latest JTSDK package can be found here, https://sourceforge.net/projects/jtsdk/files/win64/ Support and links to documentation can be found at https://groups.io/g/JTSDK JTSDK v2 is obsolete. Neil, KN3ILZ On 1/2/2020 3:23 PM, Albert Gerheim wrote: The only link I found for Qt is he

Re: [wsjt-devel] FT8 encoding logic

2020-01-02 Thread Pete
Hi Graham, I tried long long and uint64_t, and ULL. They all compile but in the end are still only 4 bytes. There are some online posts to the contrary but I couldn't get more than 4 bytes. I don't have any Arduinos any more but I tested some simple code on a Teensy2 which is still a 328 pro

Re: [wsjt-devel] FT8 encoding logic

2020-01-02 Thread Graham c
Hi Pete, Short term yes, atmega328 long term doesn't matter so much i.e. samd21, stm32, teensy or whatever. The idea is to be able to provide a secondary mode to WSPR for a Pico Balloon tracker. WSPR works well as primary mode but the desire is to have a secondary mode as well - kind of a belt an

Re: [wsjt-devel] Required packages for JTSDK

2020-01-02 Thread Albert Gerheim
Sorry. I know I need to RTFM. ;-) Al Gerheim Horribly mistyped on my droid. On Thu, Jan 2, 2020, 3:34 PM Bill Somerville wrote: > Al, > > I cannot help you if you do not read the answers I provide to your > questions. > > If you really want to download the Open Source version of Qt then you c

Re: [wsjt-devel] Required packages for JTSDK

2020-01-02 Thread Bill Somerville
Al, I cannot help you if you do not read the answers I provide to your questions. If you really want to download the Open Source version of Qt then you can find it right at the bottom of the page your reference below in the table of links in the "Download" column, so I guess you didn't read

Re: [wsjt-devel] Required packages for JTSDK

2020-01-02 Thread Albert Gerheim
No, all I want to do is swap 2 lines of code and build it. I want to swap the callbacks for changing the TX and RX frequencies in the waterfall. That's all. How do I get Qt for free? On Thu, Jan 2, 2020 at 3:24 PM Bill Somerville wrote: > On 02/01/2020 20:13, Bill Somerville wrote: > > Qt is

Re: [wsjt-devel] Required packages for JTSDK

2020-01-02 Thread Albert Gerheim
The only link I found for Qt is here https://www.qt.io/, and it ain't cheap! On Thu, Jan 2, 2020 at 3:19 PM Bill Somerville wrote: > On 02/01/2020 20:04, Albert Gerheim wrote: > > I'm starting with a totally clean Windows 10 machine. Do I have to > install QT, Python, MSYS and Cygwin on top

Re: [wsjt-devel] Required packages for JTSDK

2020-01-02 Thread Bill Somerville
On 02/01/2020 20:13, Bill Somerville wrote: Qt is Free Open Source Software for Open Source projects. It does have a dual license scheme that includes a commercial licence option for closed source projects. If you are intending to build WSJT-X for personal use, or for usages covered by the WSJT

Re: [wsjt-devel] FT8 encoding logic

2020-01-02 Thread Pete
Graham, The atmega328 is an 8 bit controller and Arduino is limited to 32 bits (i.e. 4 byte) and I have so far been unable to come up with some workaround that lets me do this 64 bit stuff on Arduino There is a uint64_t (and int64_t) datatype which allows you to work with a 64-bit word on the

Re: [wsjt-devel] Required packages for JTSDK

2020-01-02 Thread Bill Somerville
On 02/01/2020 20:04, Albert Gerheim wrote: I'm starting with a totally clean Windows 10 machine.  Do I have to install QT, Python, MSYS and Cygwin on top of the stuff specific to JTSDK? I'm following https://readthedocs.org/projects/jtsdk-win/downloads/pdf/latest/ . If I have to install Qt,

[wsjt-devel] Required packages for JTSDK

2020-01-02 Thread Albert Gerheim
I'm starting with a totally clean Windows 10 machine. Do I have to install QT, Python, MSYS and Cygwin on top of the stuff specific to JTSDK? I'm following https://readthedocs.org/projects/jtsdk-win/downloads/pdf/latest/ . If I have to install Qt, do I really have to pay all that $? !!! Thanks

Re: [wsjt-devel] How do I installQt on linux?

2020-01-02 Thread Kari
HNY Albert, Dunno what went wrong with your compile, but for your reference I recorded the build process on my computer running Ubuntu 18.04.3 LTS. Here are the required commands with ## comments: ## Started from this directory: $ pwd /home/karza/ham/wsjtx ## Create build directory $ mkdir -p ~

Re: [wsjt-devel] How do I installQt on linux?

2020-01-02 Thread Bill Somerville
On 01/01/2020 23:28, Albert Gerheim wrote: If it didn't make a Windows version, how do I accomplish that?  :-) Al, the WSJT-X build system builds executables for the native platform, if you want an MS Windows build then you must build it on a Windows system. This is pretty standard for compl

Re: [wsjt-devel] FT8 encoding logic

2020-01-02 Thread Bill Somerville
On 02/01/2020 02:15, Graham c wrote: I have been working through the code that does the encoding of standard messages in FT8 with a goal of creating a simplified version that can compiled and used on an atmega328 processor (i.e. Arduino). There is an Arduino library called JTEncode which inclu