2016-01-11 10:00:43 -05:00
|
|
|
module jt65_decode
|
|
|
|
|
|
|
|
integer, parameter :: NSZ=3413, NZMAX=60*12000, NFFT=1000
|
|
|
|
|
|
|
|
type :: jt65_decoder
|
|
|
|
procedure(jt65_decode_callback), pointer :: callback => null()
|
|
|
|
contains
|
|
|
|
procedure :: decode
|
|
|
|
end type jt65_decoder
|
|
|
|
|
|
|
|
!
|
|
|
|
! Callback function to be called with each decode
|
|
|
|
!
|
|
|
|
abstract interface
|
2016-03-09 16:01:28 -05:00
|
|
|
subroutine jt65_decode_callback(this,utc,sync,snr,dt,freq,drift, &
|
|
|
|
decoded,ft,qual,nsmo,nsum,minsync,nsubmode,naggressive)
|
|
|
|
|
2016-01-11 10:00:43 -05:00
|
|
|
import jt65_decoder
|
|
|
|
implicit none
|
|
|
|
class(jt65_decoder), intent(inout) :: this
|
|
|
|
integer, intent(in) :: utc
|
|
|
|
real, intent(in) :: sync
|
|
|
|
integer, intent(in) :: snr
|
|
|
|
real, intent(in) :: dt
|
|
|
|
integer, intent(in) :: freq
|
|
|
|
integer, intent(in) :: drift
|
|
|
|
character(len=22), intent(in) :: decoded
|
|
|
|
integer, intent(in) :: ft
|
|
|
|
integer, intent(in) :: qual
|
2016-03-09 16:01:28 -05:00
|
|
|
integer, intent(in) :: nsmo
|
|
|
|
integer, intent(in) :: nsum
|
|
|
|
integer, intent(in) :: minsync
|
|
|
|
integer, intent(in) :: nsubmode
|
|
|
|
integer, intent(in) :: naggressive
|
|
|
|
|
2016-01-11 10:00:43 -05:00
|
|
|
end subroutine jt65_decode_callback
|
|
|
|
end interface
|
|
|
|
|
|
|
|
contains
|
|
|
|
|
2016-03-09 16:01:28 -05:00
|
|
|
subroutine decode(this,callback,dd0,npts,newdat,nutc,nf1,nf2,nfqso, &
|
|
|
|
ntol,nsubmode,minsync,nagain,n2pass,nrobust,ntrials,naggressive, &
|
|
|
|
ndepth,nclearave,mycall,hiscall,hisgrid,nexp_decode)
|
2016-01-11 10:00:43 -05:00
|
|
|
|
|
|
|
! Process dd0() data to find and decode JT65 signals.
|
|
|
|
|
2016-03-10 09:25:22 -05:00
|
|
|
use jt65_mod
|
2016-01-11 10:00:43 -05:00
|
|
|
use timer_module, only: timer
|
|
|
|
|
|
|
|
include 'constants.f90'
|
|
|
|
|
|
|
|
class(jt65_decoder), intent(inout) :: this
|
|
|
|
procedure(jt65_decode_callback) :: callback
|
|
|
|
real, intent(in) :: dd0(NZMAX)
|
|
|
|
integer, intent(in) :: npts, nutc, nf1, nf2, nfqso, ntol &
|
|
|
|
, nsubmode, minsync, n2pass, ntrials, naggressive, ndepth &
|
|
|
|
, nexp_decode
|
|
|
|
logical, intent(in) :: newdat, nagain, nrobust
|
|
|
|
character(len=12), intent(in) :: mycall, hiscall
|
|
|
|
character(len=6), intent(in) :: hisgrid
|
|
|
|
|
|
|
|
real dd(NZMAX)
|
|
|
|
real ss(322,NSZ)
|
|
|
|
real savg(NSZ)
|
|
|
|
real a(5)
|
2016-03-08 16:04:05 -05:00
|
|
|
character*22 decoded,decoded0,avemsg,deepave
|
2016-01-11 10:00:43 -05:00
|
|
|
type candidate
|
|
|
|
real freq
|
|
|
|
real dt
|
|
|
|
real sync
|
|
|
|
end type candidate
|
|
|
|
type(candidate) ca(300)
|
|
|
|
type accepted_decode
|
|
|
|
real freq
|
|
|
|
real dt
|
|
|
|
real sync
|
|
|
|
character*22 decoded
|
|
|
|
end type accepted_decode
|
|
|
|
type(accepted_decode) dec(50)
|
2016-03-10 13:35:41 -05:00
|
|
|
logical :: first_time,robust,prtavg,single_decode
|
2016-01-11 10:00:43 -05:00
|
|
|
|
2016-03-08 16:04:05 -05:00
|
|
|
integer h0(0:11),d0(0:11)
|
2016-01-11 10:00:43 -05:00
|
|
|
real r0(0:11)
|
|
|
|
common/decstats/ntry65a,ntry65b,n65a,n65b,num9,numfano
|
|
|
|
common/steve/thresh0
|
|
|
|
|
|
|
|
! 0 1 2 3 4 5 6 7 8 9 10 11
|
|
|
|
data h0/41,42,43,43,44,45,46,47,48,48,49,49/
|
|
|
|
data d0/71,72,73,74,76,77,78,80,81,82,83,83/
|
|
|
|
|
|
|
|
! 0 1 2 3 4 5 6 7 8 9 10 11
|
|
|
|
data r0/0.70,0.72,0.74,0.76,0.78,0.80,0.82,0.84,0.86,0.88,0.90,0.90/
|
2016-03-08 16:04:05 -05:00
|
|
|
data nutc0/-999/,nfreq0/-999/,nsave/0/
|
2016-01-11 10:00:43 -05:00
|
|
|
save
|
|
|
|
|
|
|
|
this%callback => callback
|
|
|
|
first_time=newdat
|
|
|
|
robust=nrobust
|
|
|
|
dd=dd0
|
|
|
|
ndecoded=0
|
|
|
|
do ipass=1,n2pass ! 2-pass decoding loop
|
|
|
|
first_time=.true.
|
|
|
|
if(ipass.eq.1) then !first-pass parameters
|
|
|
|
thresh0=2.5
|
|
|
|
nsubtract=1
|
|
|
|
elseif( ipass.eq.2 ) then !second-pass parameters
|
|
|
|
thresh0=2.5
|
|
|
|
nsubtract=0
|
|
|
|
endif
|
|
|
|
if(n2pass.lt.2) nsubtract=0
|
|
|
|
|
|
|
|
! if(newdat) then
|
|
|
|
call timer('symsp65 ',0)
|
|
|
|
ss=0.
|
|
|
|
call symspec65(dd,npts,ss,nhsym,savg) !Get normalized symbol spectra
|
|
|
|
call timer('symsp65 ',1)
|
|
|
|
! endif
|
|
|
|
nfa=nf1
|
|
|
|
nfb=nf2
|
2016-03-10 13:35:41 -05:00
|
|
|
single_decode=iand(nexp_decode,32).ne.0
|
|
|
|
if(single_decode .or. (naggressive.gt.0 .and. ntol.lt.1000)) then
|
2016-01-11 10:00:43 -05:00
|
|
|
nfa=max(200,nfqso-ntol)
|
|
|
|
nfb=min(4000,nfqso+ntol)
|
|
|
|
thresh0=1.0
|
|
|
|
endif
|
|
|
|
|
|
|
|
! robust = .false.: use float ccf. Only if ncand>50 fall back to robust (1-bit) ccf
|
|
|
|
! robust = .true. : use only robust (1-bit) ccf
|
|
|
|
ncand=0
|
|
|
|
if(.not.robust) then
|
|
|
|
call timer('sync65 ',0)
|
|
|
|
call sync65(ss,nfa,nfb,naggressive,ntol,nhsym,ca,ncand,0)
|
|
|
|
call timer('sync65 ',1)
|
|
|
|
endif
|
|
|
|
if(ncand.gt.50) robust=.true.
|
|
|
|
if(robust) then
|
|
|
|
ncand=0
|
|
|
|
call timer('sync65 ',0)
|
|
|
|
call sync65(ss,nfa,nfb,naggressive,ntol,nhsym,ca,ncand,1)
|
|
|
|
call timer('sync65 ',1)
|
|
|
|
endif
|
|
|
|
|
2016-03-10 13:35:41 -05:00
|
|
|
! If a candidate was found within +/- ntol of nfqso, move it into ca(1).
|
2016-01-11 10:00:43 -05:00
|
|
|
call fqso_first(nfqso,ntol,ca,ncand)
|
2016-03-10 13:35:41 -05:00
|
|
|
if(single_decode) ncand=1
|
2016-01-11 10:00:43 -05:00
|
|
|
|
|
|
|
nvec=ntrials
|
|
|
|
if(ncand.gt.75) then
|
|
|
|
! write(*,*) 'Pass ',ipass,' ncandidates too large ',ncand
|
|
|
|
nvec=100
|
|
|
|
endif
|
|
|
|
|
|
|
|
df=12000.0/NFFT !df = 12000.0/8192 = 1.465 Hz
|
|
|
|
mode65=2**nsubmode
|
|
|
|
nflip=1 !### temporary ###
|
|
|
|
nqd=0
|
|
|
|
decoded0=""
|
|
|
|
freq0=0.
|
2016-03-08 16:04:05 -05:00
|
|
|
prtavg=.false.
|
2016-03-11 12:03:41 -05:00
|
|
|
if(.not.nagain) nsum=0
|
|
|
|
if(nclearave.eq.1) then
|
|
|
|
nsum=0
|
|
|
|
nsave=0
|
|
|
|
endif
|
2016-01-11 10:00:43 -05:00
|
|
|
|
|
|
|
do icand=1,ncand
|
|
|
|
freq=ca(icand)%freq
|
|
|
|
dtx=ca(icand)%dt
|
|
|
|
sync1=ca(icand)%sync
|
|
|
|
if(ipass.eq.1) ntry65a=ntry65a + 1
|
|
|
|
if(ipass.eq.2) ntry65b=ntry65b + 1
|
|
|
|
call timer('decod65a',0)
|
|
|
|
call decode65a(dd,npts,first_time,nqd,freq,nflip,mode65,nvec, &
|
2016-03-10 13:35:41 -05:00
|
|
|
naggressive,ndepth,mycall,hiscall,hisgrid,nexp_decode, &
|
2016-03-07 15:00:23 -05:00
|
|
|
sync2,a,dtx,nft,qual,nhist,nsmo,decoded)
|
2016-01-11 10:00:43 -05:00
|
|
|
call timer('decod65a',1)
|
2016-03-11 11:26:06 -05:00
|
|
|
if(nft.eq.1) nsum=1
|
2016-03-10 14:39:24 -05:00
|
|
|
|
|
|
|
! ncandidates=param(0)
|
|
|
|
nhard_min=param(1)
|
|
|
|
! nsoft_min=param(2)
|
|
|
|
! nera_best=param(3)
|
|
|
|
nrtt1000=param(4)
|
|
|
|
ntotal_min=param(5)
|
|
|
|
! ntry=param(6)
|
|
|
|
! nq1000=param(7)
|
|
|
|
! npp1=param(8)
|
|
|
|
nsmo=param(9)
|
|
|
|
|
2016-03-08 16:04:05 -05:00
|
|
|
nfreq=nint(freq+a(1))
|
|
|
|
ndrift=nint(2.0*a(2))
|
2016-03-09 16:01:28 -05:00
|
|
|
s2db=10.0*log10(sync2) - 35 !### empirical ###
|
|
|
|
nsnr=nint(s2db)
|
|
|
|
if(nsnr.lt.-30) nsnr=-30
|
|
|
|
if(nsnr.gt.-1) nsnr=-1
|
|
|
|
|
2016-03-08 16:04:05 -05:00
|
|
|
if(nft.ne.1 .and. ndepth.ge.4 .and. (.not.prtavg)) then
|
|
|
|
! Single-sequence FT decode failed, so try for an average FT decode.
|
|
|
|
if(nutc.ne.nutc0 .or. abs(nfreq-nfreq0).gt.ntol) then
|
|
|
|
! This is a new minute or a new frequency, so call avg65.
|
|
|
|
nutc0=nutc
|
|
|
|
nfreq0=nfreq
|
|
|
|
nsave=nsave+1
|
2016-03-09 16:01:28 -05:00
|
|
|
nsave=mod(nsave-1,64)+1
|
2016-03-08 16:04:05 -05:00
|
|
|
call avg65(nutc,nsave,sync1,dtx,nflip,nfreq,mode65,ntol, &
|
2016-03-10 15:29:00 -05:00
|
|
|
ndepth,ntrials,naggressive,nclearave,neme,mycall, &
|
|
|
|
hiscall,hisgrid,nftt,avemsg,qave,deepave,nsum,ndeepave)
|
2016-03-08 16:04:05 -05:00
|
|
|
|
2016-03-11 12:03:41 -05:00
|
|
|
if (associated(this%callback) .and. nsum.ge.2) then
|
2016-03-08 16:04:05 -05:00
|
|
|
call this%callback(nutc,sync1,nsnr,dtx-1.0,nfreq,ndrift, &
|
2016-03-09 16:01:28 -05:00
|
|
|
avemsg,nftt,nqual,nsmo,nsum,minsync,nsubmode, &
|
|
|
|
naggressive)
|
|
|
|
prtavg=.true.
|
|
|
|
cycle
|
2016-03-08 16:04:05 -05:00
|
|
|
end if
|
|
|
|
|
|
|
|
endif
|
|
|
|
endif
|
2016-03-11 11:26:06 -05:00
|
|
|
|
2016-03-10 14:39:24 -05:00
|
|
|
if(nftt.eq.1) then
|
|
|
|
nft=1
|
|
|
|
decoded=avemsg
|
|
|
|
go to 5
|
|
|
|
endif
|
2016-01-11 10:00:43 -05:00
|
|
|
n=naggressive
|
|
|
|
rtt=0.001*nrtt1000
|
2016-03-11 11:26:06 -05:00
|
|
|
if(nft.lt.2 .and. minsync.ge.0) then
|
2016-01-11 10:00:43 -05:00
|
|
|
if(nhard_min.gt.50) cycle
|
|
|
|
if(nhard_min.gt.h0(n)) cycle
|
|
|
|
if(ntotal_min.gt.d0(n)) cycle
|
|
|
|
if(rtt.gt.r0(n)) cycle
|
|
|
|
endif
|
|
|
|
|
2016-03-10 14:39:24 -05:00
|
|
|
5 if(decoded.eq.decoded0 .and. abs(freq-freq0).lt. 3.0 .and. &
|
2016-01-11 10:00:43 -05:00
|
|
|
minsync.ge.0) cycle !Don't display dupes
|
|
|
|
if(decoded.ne.' ' .or. minsync.lt.0) then
|
|
|
|
if( nsubtract .eq. 1 ) then
|
|
|
|
call timer('subtr65 ',0)
|
|
|
|
call subtract65(dd,npts,freq,dtx)
|
|
|
|
call timer('subtr65 ',1)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ndupe=0 ! de-dedupe
|
|
|
|
do i=1, ndecoded
|
|
|
|
if(decoded==dec(i)%decoded) then
|
|
|
|
ndupe=1
|
|
|
|
exit
|
|
|
|
endif
|
|
|
|
enddo
|
2016-03-10 14:39:24 -05:00
|
|
|
|
2016-01-11 10:00:43 -05:00
|
|
|
if(ndupe.ne.1 .or. minsync.lt.0) then
|
|
|
|
if(ipass.eq.1) n65a=n65a + 1
|
|
|
|
if(ipass.eq.2) n65b=n65b + 1
|
|
|
|
ndecoded=ndecoded+1
|
|
|
|
dec(ndecoded)%freq=freq+a(1)
|
|
|
|
dec(ndecoded)%dt=dtx
|
|
|
|
dec(ndecoded)%sync=sync2
|
|
|
|
dec(ndecoded)%decoded=decoded
|
|
|
|
nqual=min(qual,9999.0)
|
|
|
|
if (associated(this%callback)) then
|
2016-03-08 13:36:42 -05:00
|
|
|
call this%callback(nutc,sync1,nsnr,dtx-1.0,nfreq,ndrift, &
|
2016-03-09 16:01:28 -05:00
|
|
|
decoded,nft,nqual,nsmo,nsum,minsync,nsubmode, &
|
|
|
|
naggressive)
|
2016-01-11 10:00:43 -05:00
|
|
|
end if
|
|
|
|
endif
|
|
|
|
decoded0=decoded
|
|
|
|
freq0=freq
|
|
|
|
if(decoded0.eq.' ') decoded0='*'
|
|
|
|
endif
|
2016-03-08 13:36:42 -05:00
|
|
|
enddo !Candidate loop
|
2016-01-11 10:00:43 -05:00
|
|
|
if(ndecoded.lt.1) exit
|
2016-03-08 13:36:42 -05:00
|
|
|
enddo !Two-pass loop
|
2016-01-11 10:00:43 -05:00
|
|
|
|
|
|
|
return
|
|
|
|
end subroutine decode
|
|
|
|
|
2016-03-08 16:04:05 -05:00
|
|
|
subroutine avg65(nutc,nsave,snrsync,dtxx,nflip,nfreq,mode65,ntol,ndepth, &
|
2016-03-10 15:29:00 -05:00
|
|
|
ntrials,naggressive,nclearave,neme,mycall,hiscall,hisgrid,nftt, &
|
|
|
|
avemsg,qave,deepave,nsum,ndeepave)
|
2016-03-09 16:01:28 -05:00
|
|
|
|
2016-03-08 16:04:05 -05:00
|
|
|
! Decodes averaged JT65 data
|
2016-03-09 16:01:28 -05:00
|
|
|
|
2016-03-10 09:25:22 -05:00
|
|
|
use jt65_mod
|
2016-03-08 16:04:05 -05:00
|
|
|
parameter (MAXAVE=64)
|
|
|
|
character*22 avemsg,deepave,deepbest
|
|
|
|
character mycall*12,hiscall*12,hisgrid*6
|
|
|
|
character*1 csync,cused(64)
|
|
|
|
integer iused(64)
|
|
|
|
! Accumulated data for message averaging
|
|
|
|
integer iutc(MAXAVE)
|
|
|
|
integer nfsave(MAXAVE)
|
|
|
|
integer listutc(10)
|
|
|
|
integer nflipsave(MAXAVE)
|
2016-03-11 11:26:06 -05:00
|
|
|
! real s1b(-255:256,126)
|
|
|
|
! real s1save(-255:256,126,MAXAVE)
|
2016-03-08 16:04:05 -05:00
|
|
|
real s3save(64,63,MAXAVE)
|
|
|
|
real s3b(64,63)
|
|
|
|
real dtsave(MAXAVE)
|
|
|
|
real syncsave(MAXAVE)
|
|
|
|
logical first
|
|
|
|
data first/.true./
|
|
|
|
save
|
|
|
|
|
2016-03-09 16:01:28 -05:00
|
|
|
if(first .or. (nclearave.eq.1)) then
|
2016-03-08 16:04:05 -05:00
|
|
|
iutc=-1
|
|
|
|
nfsave=0
|
|
|
|
dtdiff=0.2
|
|
|
|
first=.false.
|
2016-03-11 12:03:41 -05:00
|
|
|
s3b=0.
|
2016-03-10 09:25:22 -05:00
|
|
|
nsave=1 !### ???
|
2016-03-08 16:04:05 -05:00
|
|
|
endif
|
2016-03-09 16:01:28 -05:00
|
|
|
nclearave=0
|
2016-03-08 16:04:05 -05:00
|
|
|
|
|
|
|
do i=1,64
|
|
|
|
if(nutc.eq.iutc(i) .and. abs(nhz-nfsave(i)).le.ntol) go to 10
|
|
|
|
enddo
|
|
|
|
|
|
|
|
! Save data for message averaging
|
|
|
|
iutc(nsave)=nutc
|
|
|
|
syncsave(nsave)=snrsync
|
|
|
|
dtsave(nsave)=dtxx
|
|
|
|
nfsave(nsave)=nfreq
|
|
|
|
nflipsave(nsave)=nflip
|
2016-03-11 11:26:06 -05:00
|
|
|
! s1save(-255:256,1:126,nsave)=s1
|
2016-03-08 16:04:05 -05:00
|
|
|
s3save(1:64,1:63,nsave)=s3a
|
|
|
|
|
2016-03-10 09:25:22 -05:00
|
|
|
10 syncsum=0.
|
2016-03-08 16:04:05 -05:00
|
|
|
dtsum=0.
|
|
|
|
nfsum=0
|
|
|
|
nsum=0
|
2016-03-10 09:25:22 -05:00
|
|
|
s3b=0.
|
2016-03-08 16:04:05 -05:00
|
|
|
|
2016-03-10 09:25:22 -05:00
|
|
|
do i=1,64 !Consider all saved spectra
|
2016-03-08 16:04:05 -05:00
|
|
|
cused(i)='.'
|
|
|
|
if(iutc(i).lt.0) cycle
|
|
|
|
if(mod(iutc(i),2).ne.mod(nutc,2)) cycle !Use only same (odd/even) seq
|
|
|
|
if(abs(dtxx-dtsave(i)).gt.dtdiff) cycle !DT must match
|
|
|
|
if(abs(nfreq-nfsave(i)).gt.ntol) cycle !Freq must match
|
|
|
|
if(nflip.ne.nflipsave(i)) cycle !Sync type (*/#) must match
|
|
|
|
s3b=s3b + s3save(1:64,1:63,i)
|
|
|
|
syncsum=syncsum + syncsave(i)
|
|
|
|
dtsum=dtsum + dtsave(i)
|
|
|
|
nfsum=nfsum + nfsave(i)
|
|
|
|
cused(i)='$'
|
|
|
|
nsum=nsum+1
|
|
|
|
iused(nsum)=i
|
|
|
|
enddo
|
|
|
|
if(nsum.lt.64) iused(nsum+1)=0
|
|
|
|
|
|
|
|
syncave=0.
|
|
|
|
dtave=0.
|
|
|
|
fave=0.
|
|
|
|
if(nsum.gt.0) then
|
|
|
|
syncave=syncsum/nsum
|
|
|
|
dtave=dtsum/nsum
|
|
|
|
fave=float(nfsum)/nsum
|
|
|
|
endif
|
|
|
|
|
|
|
|
do i=1,nsave
|
|
|
|
csync='*'
|
|
|
|
if(nflipsave(i).lt.0.0) csync='#'
|
2016-03-10 13:35:41 -05:00
|
|
|
write(14,1000) cused(i),iutc(i),syncsave(i),dtsave(i),nfsave(i),csync
|
2016-03-08 16:04:05 -05:00
|
|
|
1000 format(a1,i5.4,f6.1,f6.2,i6,1x,a1)
|
|
|
|
enddo
|
2016-03-11 11:26:06 -05:00
|
|
|
if(nsum.lt.2) go to 900
|
2016-03-08 16:04:05 -05:00
|
|
|
|
|
|
|
rewind 62
|
|
|
|
sqt=0.
|
|
|
|
sqf=0.
|
|
|
|
do j=1,64
|
|
|
|
i=iused(j)
|
|
|
|
if(i.eq.0) exit
|
|
|
|
csync='*'
|
|
|
|
if(nflipsave(i).lt.0) csync='#'
|
|
|
|
write(62,3001) i,iutc(i),syncsave(i),dtsave(i),nfsave(i),csync
|
|
|
|
3001 format(i3,i6.4,f6.1,f6.2,i6,1x,a1)
|
|
|
|
sqt=sqt + (dtsave(i)-dtave)**2
|
|
|
|
sqf=sqf + (nfsave(i)-fave)**2
|
|
|
|
enddo
|
|
|
|
rmst=0.
|
|
|
|
rmsf=0.
|
|
|
|
if(nsum.ge.2) then
|
|
|
|
rmst=sqrt(sqt/(nsum-1))
|
|
|
|
rmsf=sqrt(sqf/(nsum-1))
|
|
|
|
endif
|
|
|
|
write(62,3002)
|
|
|
|
3002 format(16x,'----- -----')
|
|
|
|
write(62,3003) dtave,nint(fave)
|
|
|
|
write(62,3003) rmst,nint(rmsf)
|
|
|
|
3003 format(15x,f6.2,i6)
|
|
|
|
flush(62)
|
|
|
|
|
|
|
|
nadd=nsum*mode65
|
|
|
|
nftt=0
|
2016-03-10 15:29:00 -05:00
|
|
|
! nexp_decode=0 !### not used, anyway
|
2016-03-08 16:04:05 -05:00
|
|
|
|
|
|
|
call extract(s3b,nadd,mode65,ntrials,naggressive,ndepth,mycall, &
|
|
|
|
hiscall,hisgrid,nexp_decode,ncount,nhist,avemsg,ltext,nftt,qual)
|
|
|
|
|
2016-03-11 11:26:06 -05:00
|
|
|
900 continue
|
2016-03-08 16:04:05 -05:00
|
|
|
return
|
|
|
|
end subroutine avg65
|
|
|
|
|
2016-01-11 10:00:43 -05:00
|
|
|
end module jt65_decode
|