2012-11-21 12:42:53 -05:00
|
|
|
subroutine jt9a
|
|
|
|
|
2013-04-22 11:43:02 -04:00
|
|
|
! These routines connect the shared memory region to the decoder.
|
2012-11-21 12:42:53 -05:00
|
|
|
|
|
|
|
interface
|
|
|
|
function address_jt9()
|
2013-03-23 11:35:32 -04:00
|
|
|
integer*1, pointer :: address_jt9
|
2012-11-21 12:42:53 -05:00
|
|
|
end function address_jt9
|
|
|
|
end interface
|
|
|
|
|
2013-05-22 21:05:37 -04:00
|
|
|
integer*1 attach_jt9
|
|
|
|
! integer*1 lock_jt9,unlock_jt9
|
2012-11-21 12:42:53 -05:00
|
|
|
integer size_jt9
|
2013-03-23 11:35:32 -04:00
|
|
|
integer*1, pointer :: p_jt9
|
2012-11-21 12:42:53 -05:00
|
|
|
character*80 cwd
|
|
|
|
logical fileExists
|
|
|
|
common/tracer/limtrace,lu
|
|
|
|
|
|
|
|
call getcwd(cwd)
|
2012-11-24 10:18:17 -05:00
|
|
|
open(12,file='timer.out',status='unknown')
|
2012-11-21 12:42:53 -05:00
|
|
|
|
|
|
|
limtrace=0
|
|
|
|
lu=12
|
|
|
|
i1=attach_jt9()
|
|
|
|
|
|
|
|
10 inquire(file=trim(cwd)//'/.lock',exist=fileExists)
|
|
|
|
if(fileExists) then
|
|
|
|
call sleep_msec(100)
|
|
|
|
go to 10
|
|
|
|
endif
|
|
|
|
|
|
|
|
inquire(file=trim(cwd)//'/.quit',exist=fileExists)
|
|
|
|
if(fileExists) then
|
|
|
|
! call ftnquit
|
2013-05-22 21:05:37 -04:00
|
|
|
i1=detach_jt9()
|
2012-11-21 12:42:53 -05:00
|
|
|
go to 999
|
|
|
|
endif
|
2013-05-22 21:05:37 -04:00
|
|
|
if(i1.eq.999999) stop !Silence compiler warning
|
2012-11-21 12:42:53 -05:00
|
|
|
|
|
|
|
nbytes=size_jt9()
|
|
|
|
if(nbytes.le.0) then
|
|
|
|
print*,'jt9a: Shared memory mem_jt9 does not exist.'
|
|
|
|
print*,"Must start 'jt9 -s' from within WSJT-X."
|
|
|
|
go to 999
|
|
|
|
endif
|
|
|
|
p_jt9=>address_jt9()
|
|
|
|
call jt9b(p_jt9,nbytes)
|
|
|
|
|
|
|
|
100 inquire(file=trim(cwd)//'/.lock',exist=fileExists)
|
|
|
|
if(fileExists) go to 10
|
2013-03-26 10:00:51 -04:00
|
|
|
call sleep_msec(100)
|
2012-11-21 12:42:53 -05:00
|
|
|
go to 100
|
|
|
|
|
|
|
|
999 return
|
|
|
|
end subroutine jt9a
|
|
|
|
|
|
|
|
subroutine jt9b(jt9com,nbytes)
|
2013-05-20 10:09:02 -04:00
|
|
|
parameter (NTMAX=120)
|
|
|
|
parameter (NSMAX=1365)
|
2012-11-21 12:42:53 -05:00
|
|
|
integer*1 jt9com(0:nbytes-1)
|
|
|
|
kss=0
|
2013-05-20 10:09:02 -04:00
|
|
|
ksavg=kss + 4*184*NSMAX
|
|
|
|
kc0=ksavg + 4*NSMAX
|
|
|
|
kid2=kc0 + 2*4*NTMAX*1500
|
|
|
|
knutc=kid2 + 2*NTMAX*12000
|
2012-11-21 12:42:53 -05:00
|
|
|
call jt9c(jt9com(kss),jt9com(ksavg),jt9com(kc0),jt9com(kid2),jt9com(knutc))
|
|
|
|
return
|
|
|
|
end subroutine jt9b
|