2016-07-30 14:46:29 -04:00
|
|
|
subroutine genmsk40(msg,msgsent,ichk,itone,itype,pchk_file)
|
2016-07-29 15:04:42 -04:00
|
|
|
|
|
|
|
use hashing
|
|
|
|
character*22 msg,msgsent,hashmsg
|
2016-07-29 17:09:56 -04:00
|
|
|
character*32 cwstring
|
|
|
|
character*2 cwstrbit
|
2016-07-29 15:04:42 -04:00
|
|
|
character*4 crpt,rpt(0:63)
|
2016-07-30 14:46:29 -04:00
|
|
|
character*512 pchk_file,gen_file
|
|
|
|
character*512 pchk_file40,gen_file40
|
2016-07-29 15:04:42 -04:00
|
|
|
logical first
|
|
|
|
integer itone(144)
|
2016-08-03 09:15:49 -04:00
|
|
|
integer*1 message(16),codeword(32),bitseq(40)
|
2016-07-29 15:04:42 -04:00
|
|
|
integer*1 s8r(8)
|
|
|
|
data s8r/1,0,1,1,0,0,0,1/
|
|
|
|
data first/.true./
|
2016-07-29 17:09:56 -04:00
|
|
|
save first,rpt
|
2016-07-29 15:04:42 -04:00
|
|
|
|
|
|
|
if(first) then
|
|
|
|
do i=0,30
|
|
|
|
if( i.lt.5 ) then
|
|
|
|
write(rpt(i),'(a1,i2.2,a1)') '-',abs(i-5)
|
|
|
|
write(rpt(i+31),'(a2,i2.2,a1)') 'R-',abs(i-5)
|
|
|
|
else
|
|
|
|
write(rpt(i),'(a1,i2.2,a1)') '+',i-5
|
|
|
|
write(rpt(i+31),'(a2,i2.2,a1)') 'R+',i-5
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
rpt(62)='RRR '
|
|
|
|
rpt(63)='73 '
|
|
|
|
first=.false.
|
|
|
|
endif
|
|
|
|
|
2016-07-30 14:46:29 -04:00
|
|
|
! Temporarily hardwire filenames and init on every call
|
|
|
|
i=index(pchk_file,"128-80")
|
|
|
|
pchk_file40=pchk_file(1:i-1)//"32-16"//pchk_file(i+6:)
|
|
|
|
i=index(pchk_file40,".pchk")
|
|
|
|
gen_file40=pchk_file40(1:i-1)//".gen"
|
|
|
|
call init_ldpc(trim(pchk_file40)//char(0),trim(gen_file40)//char(0))
|
2016-07-29 15:04:42 -04:00
|
|
|
itype=-1
|
|
|
|
msgsent='*** bad message ***'
|
|
|
|
itone=0
|
|
|
|
i1=index(msg,'>')
|
|
|
|
if(i1.lt.9) go to 900
|
|
|
|
call fmtmsg(msg,iz)
|
|
|
|
crpt=msg(i1+2:i1+5)
|
|
|
|
do i=0,63
|
|
|
|
if(crpt.eq.rpt(i)) go to 10
|
|
|
|
enddo
|
|
|
|
go to 900
|
|
|
|
|
2016-07-29 17:09:56 -04:00
|
|
|
10 irpt=i !Report index, 0-63
|
2016-07-29 15:04:42 -04:00
|
|
|
if(ichk.lt.10000) then
|
|
|
|
hashmsg=msg(2:i1-1)//' '//crpt
|
|
|
|
call hash(hashmsg,22,ihash)
|
|
|
|
ihash=iand(ihash,1023) !10-bit hash
|
|
|
|
ig=64*ihash + irpt !6-bit report
|
|
|
|
else
|
|
|
|
ig=ichk-10000
|
|
|
|
endif
|
|
|
|
|
2016-07-29 17:09:56 -04:00
|
|
|
do i=1,16
|
|
|
|
message(i)=iand(1,ishft(ig,1-i))
|
|
|
|
enddo
|
2016-08-03 09:15:49 -04:00
|
|
|
call ldpc_encode(message,codeword)
|
2016-07-29 15:04:42 -04:00
|
|
|
|
2016-07-29 17:09:56 -04:00
|
|
|
cwstring=" "
|
2016-07-29 15:04:42 -04:00
|
|
|
do i=1,32
|
2016-07-29 17:09:56 -04:00
|
|
|
write(cwstrbit,'(i2)') codeword(i)
|
|
|
|
cwstring=cwstring//cwstrbit
|
2016-07-29 15:04:42 -04:00
|
|
|
enddo
|
2016-08-03 09:15:49 -04:00
|
|
|
! write(*,'(a6,i6,2x,a6,i6,2x,a6,i6)') ' msg: ',ig,'rprt: ',irpt,'hash: ',ihash
|
|
|
|
! write(*,'(a6,32i1)') ' cw: ',codeword
|
2016-07-29 15:04:42 -04:00
|
|
|
|
|
|
|
bitseq(1:8)=s8r
|
|
|
|
bitseq(9:40)=codeword
|
|
|
|
bitseq=2*bitseq-1
|
|
|
|
|
|
|
|
! Map I and Q to tones.
|
|
|
|
itone=0
|
|
|
|
do i=1, 20
|
|
|
|
itone(2*i-1)=(bitseq(2*i)*bitseq(2*i-1)+1)/2;
|
2016-07-30 11:20:31 -04:00
|
|
|
itone(2*i)=-(bitseq(2*i)*bitseq(mod(2*i,40)+1)-1)/2;
|
2016-07-29 15:04:42 -04:00
|
|
|
enddo
|
|
|
|
|
|
|
|
! Flip polarity
|
|
|
|
itone=-itone+1
|
|
|
|
|
|
|
|
msgsent=msg
|
|
|
|
itype=7
|
|
|
|
|
|
|
|
900 return
|
2016-07-29 17:09:56 -04:00
|
|
|
end subroutine genmsk40
|
2016-07-29 15:04:42 -04:00
|
|
|
|