mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-15 16:42:12 -05:00
Fix the A, C modes in decode1a.f.
Still to do: compare full-length FFTs (maybe with smo() called?) and mode65-summed shorted FFTs. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@2566 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
6ce5c09a1b
commit
eca274079d
@ -85,8 +85,6 @@
|
||||
sq0=aa*aa*sqa + bb*bb*sqb
|
||||
sync2=3.7*ccfbest/sq0
|
||||
|
||||
! print*,n6,dt00,i0,nz,a(1),sync2
|
||||
|
||||
! Apply AFC corrections to the time-domain signal
|
||||
! Now we are back to using the 1378.125 Hz sample rate, enough to
|
||||
! accommodate the full JT65C bandwidth.
|
||||
@ -124,7 +122,9 @@
|
||||
do i=1,66
|
||||
! s2(i,k)=real(c5a(i))**2 + aimag(c5a(i))**2
|
||||
jj=i
|
||||
if(nfast.eq.1) jj=2*i-1
|
||||
if(nfast.eq.1 .and. mode65.eq.2) jj=2*i-1
|
||||
if(nfast.eq.2 .and. mode65.eq.4) jj=2*i-1
|
||||
if(nfast.eq.1 .and. mode65.eq.4) jj=4*i-3
|
||||
s2(i,k)=real(c5a(jj))**2 + aimag(c5a(jj))**2
|
||||
enddo
|
||||
else
|
||||
|
@ -1,4 +1,4 @@
|
||||
//------------------------------------------------------------- MainWindow
|
||||
//-------------------------------------------------------------- MainWindow
|
||||
#include "mainwindow.h"
|
||||
#include "ui_mainwindow.h"
|
||||
#include "devsetup.h"
|
||||
|
Loading…
Reference in New Issue
Block a user