2012-11-15 11:34:14 -05:00
|
|
|
program jt9code
|
|
|
|
|
|
|
|
! Generate simulated data for testing of WSJT-X
|
|
|
|
|
2014-10-18 20:56:41 -04:00
|
|
|
character msg*22,msg0*22,decoded*22,bad*1,msgtype*10
|
2013-05-20 10:09:02 -04:00
|
|
|
integer*4 i4tone(85) !Channel symbols (values 0-8)
|
2012-11-15 11:34:14 -05:00
|
|
|
include 'jt9sync.f90'
|
|
|
|
|
|
|
|
nargs=iargc()
|
|
|
|
if(nargs.ne.1) then
|
|
|
|
print*,'Usage: jt9code "message"'
|
|
|
|
go to 999
|
|
|
|
endif
|
|
|
|
|
2014-10-18 20:56:41 -04:00
|
|
|
call getarg(1,msg)
|
|
|
|
call fmtmsg(msg,iz) !To upper, collapse mult blanks
|
|
|
|
msg0=msg !Input message
|
|
|
|
|
2012-12-11 13:50:07 -05:00
|
|
|
ichk=0
|
2014-10-18 20:56:41 -04:00
|
|
|
call genjt9(msg,ichk,decoded,i4tone,itype) !Encode message into tone #s
|
|
|
|
|
|
|
|
msgtype=""
|
|
|
|
if(itype.eq.1) msgtype="Std Msg"
|
|
|
|
if(itype.eq.2) msgtype="Type 1 pfx"
|
|
|
|
if(itype.eq.3) msgtype="Type 1 sfx"
|
|
|
|
if(itype.eq.4) msgtype="Type 2 pfx"
|
|
|
|
if(itype.eq.5) msgtype="Type 2 sfx"
|
|
|
|
if(itype.eq.6) msgtype="Free text"
|
|
|
|
|
|
|
|
write(*,1010)
|
|
|
|
1010 format("Message Decoded Err"/ &
|
|
|
|
"-----------------------------------------------------------------")
|
|
|
|
bad=" "
|
|
|
|
if(decoded.ne.msg0) bad="*"
|
|
|
|
write(*,1020) msg0,decoded,bad,itype,msgtype
|
|
|
|
1020 format(a22,2x,a22,3x,a1,i3,": ",a10)
|
|
|
|
|
|
|
|
write(*,1030) i4tone
|
|
|
|
1030 format(/'Channel symbols'/(30i2))
|
2012-11-15 11:34:14 -05:00
|
|
|
|
|
|
|
999 end program jt9code
|