2017-06-15 07:48:09 -04:00
|
|
|
program ft8d
|
|
|
|
|
|
|
|
! Decode FT8 data read from *.wav files.
|
|
|
|
|
|
|
|
! FT8 is a potential mode intended for use at 6m (and maybe HF). It uses an
|
|
|
|
! LDPC (174,87) code, 8-FSK modulation, and 15 second T/R sequences. Otherwise
|
|
|
|
! should behave like JT65 and JT9 as used on HF bands, except that QSOs are
|
|
|
|
! 4 x faster.
|
|
|
|
|
|
|
|
! Reception and Demodulation algorithm:
|
|
|
|
! ... tbd ...
|
|
|
|
|
|
|
|
include 'ft8_params.f90'
|
2017-06-19 16:15:43 -04:00
|
|
|
character*12 arg
|
|
|
|
character infile*80,datetime*13
|
2017-06-15 07:48:09 -04:00
|
|
|
real s(NH1,NHSYM)
|
2017-06-19 16:15:43 -04:00
|
|
|
real candidate(3,100)
|
2017-06-15 07:48:09 -04:00
|
|
|
integer ihdr(11)
|
|
|
|
integer*2 iwave(NMAX) !Generated full-length waveform
|
2017-06-16 09:27:17 -04:00
|
|
|
|
2017-06-15 07:48:09 -04:00
|
|
|
nargs=iargc()
|
2017-06-16 09:27:17 -04:00
|
|
|
if(nargs.lt.3) then
|
|
|
|
print*,'Usage: ft8d MaxIt Norder file1 [file2 ...]'
|
|
|
|
print*,'Example ft8d 40 2 *.wav'
|
2017-06-15 07:48:09 -04:00
|
|
|
go to 999
|
|
|
|
endif
|
2017-06-16 09:27:17 -04:00
|
|
|
call getarg(1,arg)
|
|
|
|
read(arg,*) max_iterations
|
|
|
|
call getarg(2,arg)
|
|
|
|
read(arg,*) norder
|
|
|
|
nfiles=nargs-2
|
2017-06-15 07:48:09 -04:00
|
|
|
|
|
|
|
twopi=8.0*atan(1.0)
|
|
|
|
fs=12000.0 !Sample rate
|
|
|
|
dt=1.0/fs !Sample interval (s)
|
|
|
|
tt=NSPS*dt !Duration of "itone" symbols (s)
|
|
|
|
ts=2*NSPS*dt !Duration of OQPSK symbols (s)
|
|
|
|
baud=1.0/tt !Keying rate (baud)
|
|
|
|
txt=NZ*dt !Transmission length (s)
|
|
|
|
|
2017-06-16 09:27:17 -04:00
|
|
|
do ifile=1,nfiles
|
|
|
|
call getarg(ifile+2,infile)
|
2017-06-15 07:48:09 -04:00
|
|
|
open(10,file=infile,status='old',access='stream')
|
|
|
|
read(10,end=999) ihdr,iwave
|
|
|
|
close(10)
|
|
|
|
j2=index(infile,'.wav')
|
2017-06-15 11:38:50 -04:00
|
|
|
read(infile(j2-6:j2-1),*) nutc
|
|
|
|
datetime=infile(j2-13:j2-1)
|
2017-06-19 16:15:43 -04:00
|
|
|
call sync8(iwave,s,candidate,ncand)
|
|
|
|
call ft8b(datetime,s,candidate,ncand)
|
2017-06-16 09:27:17 -04:00
|
|
|
enddo ! ifile loop
|
|
|
|
|
2017-06-15 07:48:09 -04:00
|
|
|
999 end program ft8d
|
2017-06-19 16:15:43 -04:00
|
|
|
|