Bill Somerville
0d5f6644ca
Add facility for user configuration of Hamlib settings
...
A user written JSON file may be used to define Hamlib configuration
settings, for example to increase the communications time out to 10
seconds create the file hamlib_settings.json containing:
{
"config": {
"timeout": 10000
}
}
in the application specific configuration directory. On Windows it is
%LOCALAPPDATA%\<app-name>\, on Linux it is ~/.config/<app-name>/
(~/.config/ before Qt 5.5) and on OS X it is
~/Librry/Preferences/<app-name> (~/Library/Preferences/ before Qt
5.5).
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6213 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-12-01 23:03:54 +00:00
Joe Taylor
d89aa4cb49
Add simple program to evaluate binomial coefficient and hypergeometric pdf.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6212 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-12-01 19:29:05 +00:00
Joe Taylor
1d7d351210
Correct the numerical value for P(x>=37) = 1.9e-6. Fix a typo.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6211 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-12-01 19:17:50 +00:00
Joe Taylor
bfe12404bc
Oops! Fix a typo.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6209 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-12-01 14:43:06 +00:00
Joe Taylor
75178a1b1b
A few more minor tweaks to the text.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6208 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-12-01 14:30:21 +00:00
Steven Franke
d35efe8081
Add Psuccess figure to the document and commit gnuplot script and data files that produced it.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6207 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-12-01 02:48:48 +00:00
Joe Taylor
1302212cf6
A few more tweaks of the draft paper.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6206 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-12-01 02:03:35 +00:00
Joe Taylor
aa46837f98
More massaging of draft paper on the FT dedoder.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6205 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-12-01 00:28:58 +00:00
Joe Taylor
3e56790498
More work on the paper on soft-decision RS decoder.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6204 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-30 21:53:58 +00:00
Bill Somerville
141f166539
Allow for broken Kenwood CAT emulations
...
The HDSDR software returns invalid responses to mode query commands
MD. This change detects that and does no more mode queries. This means
mode management is not possible with this rig until it is fixed.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6202 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-29 23:36:47 +00:00
Steven Franke
dbd4d3335b
Additions to sfrsd document.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6200 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-28 23:31:01 +00:00
Steven Franke
31648129b2
Small tweaks to sfrsd document.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6199 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-28 17:08:03 +00:00
Steven Franke
2e28593638
Some more progress on the sfrsd document. IEEE Layout won't work with enumerate style, so switched to a different style for now.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6197 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-28 05:38:16 +00:00
Steven Franke
92d311f41b
Enable jt65sim to accept real-valued snr and generate unique callsigns when nsig>1.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6195 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-27 16:55:55 +00:00
Bill Somerville
9a21e77159
Make install locations configuration variables
...
Locations of various components to be determined at configuration
time. This allows various "Standard" system layouts to be
accomodated. For example on FreeBSD the manpages are usually installed
in the man directory i.e. /usr/local/man whereas the WSJT-X default is
to install them in share/man i.e. /usr/share/man. By setting the CMake
variable WSJT_MANPAGE_DESTINATION to either a relative or absolute
path the install location can be set:
$ cmake -D WSJT_MANPAGE_DESTINATION=. ...
will install the manpages at ${CMAKE_INSTALL_PREFIX}/man
The new configuration variables are:
WSJT_BIN_DESTINATION
WSJT_LIB_DESTINATION
WSJT_SHARE_DESTINATION
WSJT_DOC_DESTINATION
WSJT_DATA_DESTINATION
WSJT_MANPAGE_DESTINATION
WSJT_PLUGIN_DESTINATION
WSJT_QT_CONF_DESTINATION
NB: changes to the above may break WSJT-X at present where the install
locations of files used directly by WSJT-X are moved.
Warning: using absolute paths for these variables is not recommended
as files may be installed in unexpected places, particularly when run
with root privileges. All relative paths with be relative to
CMAKE_INSTALL_PREFIX.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6192 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-26 19:45:10 +00:00
Bill Somerville
19c43abd8f
Correct build script typo
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6191 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-26 19:45:05 +00:00
Bill Somerville
2f4b669f48
Added manpage for udp_daemon reference example
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6190 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-26 18:53:24 +00:00
Bill Somerville
45c2d82f59
Remove spurious comma that causes bogus manpage generation
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6188 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-26 13:48:38 +00:00
Steven Franke
afdd82e5df
Fix half-symbol offset in jt65sim.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6187 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-26 13:41:07 +00:00
Steven Franke
8f8099b12c
Remove redundant file.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6186 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-26 03:57:42 +00:00
Steven Franke
3bb167fb38
Add separate folder sfrsd_paper to hold the whole project.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6185 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-26 03:55:56 +00:00
Steven Franke
3bd9aecb67
Make changes to jt65a arguments.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6184 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-26 02:51:46 +00:00
Steven Franke
d1c380db22
Add beginnings of rough draft of sfrsd reference document.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6183 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-26 01:59:56 +00:00
Joe Taylor
f8d0eb66a8
Send parameters for experience-based decoding to jt9[.exe].
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6181 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-25 20:09:57 +00:00
Bill Somerville
011b0cfc85
Added jt65sim target to build - not installed nor packaged
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6180 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-25 19:36:32 +00:00
Joe Taylor
6bf40a28d7
Increase the JT65 range of acceptable DT: now -2 to +5 s. Note that
...
displayed DT values appear to be to low by 0.2 s -- they range from
-2.2 s to +4.8 s, according to files generated by jt65sim.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6179 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-25 16:40:22 +00:00
Joe Taylor
acdc716f21
Code cleanup: don't modify the msg argument passed to packmsg().
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6178 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-25 14:57:10 +00:00
Steven Franke
959e96708a
Add command line option -f to set nfqso in jt65 test program.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6177 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-25 03:27:42 +00:00
Joe Taylor
0eeaf8367a
Remove vestiges of LU 22 for kvasd.dat.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6175 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-24 20:16:57 +00:00
Joe Taylor
cd6cff0865
Implement (still in very basic form) experience-based decoding for JT65.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6174 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-24 19:49:04 +00:00
Bill Somerville
17056d926d
Remove more KVASD remnants
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6173 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-24 19:46:59 +00:00
Joe Taylor
18a6a4163f
Correct the S/N scale in jt65sim; set some params for command-line use of jt9.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6172 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-24 18:20:45 +00:00
Joe Taylor
b71d62a873
Separate variables for the decoding parameters that had been packed into ndepth.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6170 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-24 15:05:45 +00:00
Bill Somerville
818c6f1724
Initialize degrade saved SNR setting to zero
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6169 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-24 00:11:39 +00:00
Bill Somerville
51b8802116
Remove redundant layout manager
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6168 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-24 00:11:32 +00:00
Joe Taylor
2a0602b19d
Add degrade_snr.f90
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6167 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-23 18:20:55 +00:00
Joe Taylor
cb8113355d
Default to General tab.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6166 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-23 18:09:23 +00:00
Joe Taylor
6fe67b1ddf
Add facility to degrade S/N of data from .wav files.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6165 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-23 18:05:36 +00:00
Joe Taylor
65013559ed
Decode JT65 first at QSO frequency.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6164 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-23 15:57:33 +00:00
Joe Taylor
d9712f12bb
Fix misspelling of new settings name "Sync1Bit".
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6163 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-23 14:56:00 +00:00
Joe Taylor
b5033c6de1
Remove diagnostic print.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6162 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-23 14:44:33 +00:00
Joe Taylor
55786566fd
Correct a misplaced m_h2 in plotter.cpp.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6161 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-23 14:39:55 +00:00
Bill Somerville
2f69c82572
Revert "Correct architecture name for PPC packages"
...
This reverts commit r6157.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6159 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-23 11:42:52 +00:00
Bill Somerville
e4dfb18a4b
Correct architecture name for PPC packages
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6157 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-23 00:27:52 +00:00
Joe Taylor
a8d0e2eeeb
Add user option to set percentage of WideGraph height used for spectrum plot.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6156 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-22 23:38:42 +00:00
Bill Somerville
2740cdfb53
Tidy up and make platform agnostic the Configuration->Advanced Tab
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6155 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-22 19:17:06 +00:00
Steven Franke
6d6c4008d9
Default is Robust sync OFF
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6154 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-22 18:03:48 +00:00
Steven Franke
cc1fc054d0
tweak layout in advanced settings tab
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6153 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-22 17:48:53 +00:00
Steven Franke
24f9076700
Simplify sync logic and restore fallback to robust sync when ncand>50, even when box is un-checked.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6152 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-22 15:52:34 +00:00
Steven Franke
3d76648418
Add robust sync checkbox to Advanced setup.
...
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6151 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2015-11-22 15:27:14 +00:00