Hi Danny,
Thanks for supporting my concern.
Previous revisions of WSJT-X did not take into account the grid square when dealing with long call signs with additional prefix/ or /suffix. But Rev. 2 is definitely different. During my QSOs with each of the 3 stations mentionned we entered into
>
> if ((x[9]&0x80)==1)
> return;
> warning: bitwise comparison always evaluates to false
Nothing really important but I would have appreciated more a warning like
this:
warning: bitwise comparison always evaluates to false, therefore I will
refuse to compile this source code until you carefully
Hi Bill,
The problem was with hamlib in one form or another. Have gitted the hamlib
branch for-wsjtx and successfully built wsjtx v2.0.0 784f75. Got an execution
error regarding missing .so libhamlib which I presume is like a .dll, so
installed libhamlib2 and all now works fine. Running 2 insta
Mike,I share your concern about your compound call sign. Just replied to Phil
- F5??? about his compound call receive problem. [please see that response -
too lazy to retype the details] We all share ... and many in the FT8 world
share the programming issue of ver2 not including your grid whe
Phil,
I share your concern. Your problem your QSO station using a compound call sign
... which is what I do both when using FT8 and SSB. On FT8 I use W4/AH6FX and
when doing so, the WSJT-X software BY DESIGN does not transmit your grid -
which perhaps is your problem. The current Quick Start
Well it happened again but this time I paid better attention.
So I figured I should tell you.
I did double click on a station calling CQ
My station called his call sign with my call and grid as normal.
He called CQ a second time and I responded again automatically.
The third time he responded to a
Thanks, Ashley! I guess that error has been in qra64.c for a long time,
without anyone noticing. ;-)
-- Joe, K1JT
On 1/8/2019 2:55 AM, Ashley Brighthope wrote:
Hi, i noticed during compiling the source of
784f75 master
https://sourceforge.net/p/wsjt/wsjtx/ci/master/tree/lib/qra/qra6
On 07/01/2019 20:38, Greg Cook wrote:
Hi,
I am trying to build wsjtx v2 on Ubuntu Pi2. I have followed the v2
INSTALL file advice from Bill, installing C, fortran compilers and
hamlib etc. and have reached the point:
cmake -D CMAKE_PREFIX_PATH=~/hamlib-prefix -D
CMAKE_INSTALL_PREFIX=~/wsjt
Hi, i noticed during compiling the source of
784f75 master
https://sourceforge.net/p/wsjt/wsjtx/ci/master/tree/lib/qra/qra64/qra64.c:245
if ((x[9]&0x80)==1)
return;
warning: bitwise comparison always evaluates to false
guessing it should be
if (x[9]&0x80)
return;
_