mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-29 04:42:28 -04:00
Fix the "off by one" issue in measuring f0 for list decodes.
This commit is contained in:
parent
3dd34e13ba
commit
8b9b71c894
@ -142,7 +142,7 @@ subroutine q65_sync(nutc,iwave,nmax,mode_q65,codewords,ncw,nsps,nfqso,ntol, &
|
|||||||
ijpk=maxloc(ccf)
|
ijpk=maxloc(ccf)
|
||||||
ipk=ijpk(1)-ia-1
|
ipk=ijpk(1)-ia-1
|
||||||
jpk=ijpk(2)-53-1
|
jpk=ijpk(2)-53-1
|
||||||
f0=nfqso + ipk*df
|
f0=nfqso + (ipk-1)*df
|
||||||
xdt=jpk*dtstep
|
xdt=jpk*dtstep
|
||||||
imsg_best=imsg
|
imsg_best=imsg
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user