WSJT-X/lib/qra/q65/q65.f90

19 lines
440 B
Fortran
Raw Normal View History

2020-12-26 10:08:53 -05:00
module q65
parameter (MAXAVE=64)
parameter (PLOG_MIN=-240.0) !List decoding threshold
2020-12-26 10:08:53 -05:00
integer nsave,nlist,LL0
integer iutc(MAXAVE)
integer iseq(MAXAVE)
integer listutc(10)
integer apsym0(58),aph10(10)
integer apmask(13),apsymbols(13)
2020-12-28 18:53:13 -05:00
integer navg
real f0save(MAXAVE)
2020-12-26 10:08:53 -05:00
real xdtsave(MAXAVE)
real snr1save(MAXAVE)
real,allocatable :: s3save(:,:,:)
real,allocatable :: s3avg(:,:)
end module q65