mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-06-25 06:35:17 -04:00
Make the command-line MSK144 decoder work again.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7410 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
d9f120c967
commit
c1a0fe3d27
@ -9,15 +9,20 @@ program msk144d2
|
|||||||
|
|
||||||
character c
|
character c
|
||||||
character*80 line
|
character*80 line
|
||||||
logical :: display_help=.false.
|
|
||||||
logical*1 bShMsgs
|
|
||||||
type(wav_header) :: wav
|
|
||||||
integer*2 id2(30*12000)
|
|
||||||
integer*2 ichunk(7*1024)
|
|
||||||
character*500 infile
|
character*500 infile
|
||||||
character*12 mycall,hiscall
|
character*12 mycall,hiscall
|
||||||
|
character*6 mygrid
|
||||||
character(len=500) optarg
|
character(len=500) optarg
|
||||||
|
|
||||||
|
logical :: display_help=.false.
|
||||||
|
logical*1 bShMsgs
|
||||||
|
logical*1 bcontest
|
||||||
|
|
||||||
|
type(wav_header) :: wav
|
||||||
|
|
||||||
|
integer*2 id2(30*12000)
|
||||||
|
integer*2 ichunk(7*1024)
|
||||||
|
|
||||||
type (option) :: long_options(8) = [ &
|
type (option) :: long_options(8) = [ &
|
||||||
option ('ndepth',.true.,'c','ndepth',''), &
|
option ('ndepth',.true.,'c','ndepth',''), &
|
||||||
option ('dxcall',.true.,'d','hiscall',''), &
|
option ('dxcall',.true.,'d','hiscall',''), &
|
||||||
@ -35,6 +40,7 @@ program msk144d2
|
|||||||
mycall=''
|
mycall=''
|
||||||
hiscall=''
|
hiscall=''
|
||||||
bShMsgs=.false.
|
bShMsgs=.false.
|
||||||
|
bcontest=.false.
|
||||||
|
|
||||||
do
|
do
|
||||||
call getopt('c:d:ef:hm:n:s',long_options,c,optarg,narglen,nstat,noffset,nremain,.true.)
|
call getopt('c:d:ef:hm:n:s',long_options,c,optarg,narglen,nstat,noffset,nremain,.true.)
|
||||||
@ -96,7 +102,7 @@ program msk144d2
|
|||||||
tsec=(i-1)/12000.0
|
tsec=(i-1)/12000.0
|
||||||
tt=sum(float(abs(id2(i:i+7*512-1))))
|
tt=sum(float(abs(id2(i:i+7*512-1))))
|
||||||
if( tt .ne. 0.0 ) then
|
if( tt .ne. 0.0 ) then
|
||||||
call mskrtd(ichunk,nutc,tsec,ntol,nrxfreq,ndepth,mycall,hiscall,bShMsgs,line)
|
call mskrtd(ichunk,nutc,tsec,ntol,nrxfreq,ndepth,mycall,mygrid,hiscall,bShMsgs,bcontest,line)
|
||||||
if( index(line,"^") .ne. 0 .or. index(line,"&") .ne. 0 ) then
|
if( index(line,"^") .ne. 0 .or. index(line,"&") .ne. 0 ) then
|
||||||
write(*,*) line
|
write(*,*) line
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user