mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-07-31 13:12:30 -04:00
Merge branch 'develop' of bitbucket.org:k1jt/wsjtx into fox_rate_calculations
This commit is contained in:
commit
51539952b7
@ -97,8 +97,8 @@ d). Edit lines as needed. Keeping them in alphabetic order help see dupes.
|
|||||||
:win32_openssl: https://slproweb.com/download/Win32OpenSSL_Light-1_1_1s.msi[Win32 OpenSSL Light Package]
|
:win32_openssl: https://slproweb.com/download/Win32OpenSSL_Light-1_1_1s.msi[Win32 OpenSSL Light Package]
|
||||||
:win64_openssl: https://slproweb.com/download/Win64OpenSSL_Light-1_1_1s.msi[Win64 OpenSSL Light Package]
|
:win64_openssl: https://slproweb.com/download/Win64OpenSSL_Light-1_1_1s.msi[Win64 OpenSSL Light Package]
|
||||||
:writelog: https://writelog.com/[Writelog]
|
:writelog: https://writelog.com/[Writelog]
|
||||||
:wsjtx_group: https://groups.io/g/WSJTX[WSJTX Group]
|
:wsjtx_group: https://groups.io/g/wsjtgroup[WSJT GROUP Forum]
|
||||||
:wsjtx_group2: https://groups.io/g/WSJTX[join the group]
|
:wsjtx_group2: https://groups.io/g/wsjtgroup[join the group]
|
||||||
:wsjtx: https://sourceforge.net/projects/wsjt/files/wsjtx-{VERSION}/wsjtx.html[WSJT-X]
|
:wsjtx: https://sourceforge.net/projects/wsjt/files/wsjtx-{VERSION}/wsjtx.html[WSJT-X]
|
||||||
:wspr0_guide: https://wsjt.sourceforge.io/WSPR0_Instructions.TXT[WSPR0 Guide]
|
:wspr0_guide: https://wsjt.sourceforge.io/WSPR0_Instructions.TXT[WSPR0 Guide]
|
||||||
:wspr: https://sourceforge.net/projects/wsjt/files/wsjtx-{VERSION}/wspr.html[WSPR Home Page]
|
:wspr: https://sourceforge.net/projects/wsjt/files/wsjtx-{VERSION}/wspr.html[WSPR Home Page]
|
||||||
@ -134,7 +134,7 @@ d). Edit lines as needed. Keeping them in alphabetic order help see dupes.
|
|||||||
:dev_mail_svn: https://sourceforge.net/auth/subscriptions/[WSJT SVN Archives]
|
:dev_mail_svn: https://sourceforge.net/auth/subscriptions/[WSJT SVN Archives]
|
||||||
:devmail: mailto:wsjt-devel@lists.sourceforge.net[wsjt-devel@lists.sourceforge.net]
|
:devmail: mailto:wsjt-devel@lists.sourceforge.net[wsjt-devel@lists.sourceforge.net]
|
||||||
:devmail1: mailto:wsjt-devel@lists.sourceforge.net[Post Message]
|
:devmail1: mailto:wsjt-devel@lists.sourceforge.net[Post Message]
|
||||||
:wsjtgroup_mail: mailto:WSJTX@groups.io[Post Message]
|
:wsjtgroup_mail: mailto:wsjtgroup@groups.io[Post Message]
|
||||||
:greg_beam: mailto:ki7mt@yahoo.com[KI7MT]
|
:greg_beam: mailto:ki7mt@yahoo.com[KI7MT]
|
||||||
:joe_taylor: mailto:joe@princeton.edu[K1JT]
|
:joe_taylor: mailto:joe@princeton.edu[K1JT]
|
||||||
:stuart_rackman: mailto:srackham@gmail.com[Stuart Rackham]
|
:stuart_rackman: mailto:srackham@gmail.com[Stuart Rackham]
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
The best source of help in setting up your station or configuring
|
The best source of help in setting up your station or configuring
|
||||||
_WSJT-X_ is the {wsjtx_group} at email address
|
_WSJT-X_ is the {wsjtx_group} at email address
|
||||||
wsjtx@groups.io. The chances are good that someone with
|
wsjtgroup@groups.io. The chances are good that someone with
|
||||||
similar interests and equipment has already solved your problem and
|
similar interests and equipment has already solved your problem and
|
||||||
will be happy to help. To post messages here you will need to
|
will be happy to help. To post messages here you will need to
|
||||||
{wsjt-devel}.
|
{wsjt-devel}.
|
||||||
@ -11,7 +11,7 @@ will be happy to help. To post messages here you will need to
|
|||||||
|
|
||||||
One of your responsibilities as a _WSJT-X_ user is to help the
|
One of your responsibilities as a _WSJT-X_ user is to help the
|
||||||
volunteer programmers to make the program better. Bugs may be
|
volunteer programmers to make the program better. Bugs may be
|
||||||
reported to the WSJTX forum on Groups.io {wsjtgroup_mail} or the WSJT
|
reported to the WSJTGROUP forum on Groups.io {wsjtgroup_mail} or the WSJT
|
||||||
Developers list (wsjt-devel@lists.sourceforge.net). Again, you will
|
Developers list (wsjt-devel@lists.sourceforge.net). Again, you will
|
||||||
need to {wsjtx_group2} or {wsjt-devel2}.
|
need to {wsjtx_group2} or {wsjt-devel2}.
|
||||||
|
|
||||||
|
@ -1165,7 +1165,7 @@ int main(int argc, char *argv[])
|
|||||||
for (k=0; k<162; k++) { //Sum over symbols
|
for (k=0; k<162; k++) { //Sum over symbols
|
||||||
ifd=ifr+((float)k-81.0)/81.0*( (float)idrift )/(2.0*df);
|
ifd=ifr+((float)k-81.0)/81.0*( (float)idrift )/(2.0*df);
|
||||||
kindex=k0+2*k;
|
kindex=k0+2*k;
|
||||||
if( kindex < nffts ) {
|
if( kindex >= 0 && kindex < nffts ) {
|
||||||
p0=ps[ifd-3][kindex];
|
p0=ps[ifd-3][kindex];
|
||||||
p1=ps[ifd-1][kindex];
|
p1=ps[ifd-1][kindex];
|
||||||
p2=ps[ifd+1][kindex];
|
p2=ps[ifd+1][kindex];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user