2014-10-18 20:56:41 -04:00
|
|
|
subroutine genjt9(msg0,ichk,msgsent,i4tone,itype)
|
2012-09-27 15:10:15 -04:00
|
|
|
|
2012-09-28 18:00:49 -04:00
|
|
|
! Encodes a JT9 message and returns msgsent, the message as it will
|
2012-10-17 15:58:35 -04:00
|
|
|
! be decoded, and an integer array i4tone(85) of 9-FSK tone values
|
2012-09-28 18:00:49 -04:00
|
|
|
! in the range 0-8.
|
2012-09-27 15:10:15 -04:00
|
|
|
|
2012-11-16 13:25:27 -05:00
|
|
|
character*22 msg0
|
2012-10-17 15:58:35 -04:00
|
|
|
character*22 message !Message to be generated
|
|
|
|
character*22 msgsent !Message as it will be received
|
|
|
|
integer*4 i4Msg6BitWords(13) !72-bit message as 6-bit words
|
|
|
|
integer*1 i1Msg8BitBytes(13) !72 bits and zero tail as 8-bit bytes
|
|
|
|
integer*1 i1EncodedBits(207) !Encoded information-carrying bits
|
|
|
|
integer*1 i1ScrambledBits(207) !Encoded bits after interleaving
|
|
|
|
integer*4 i4DataSymbols(69) !Data symbols (values 0-7)
|
|
|
|
integer*4 i4GrayCodedSymbols(69) !Gray-coded symbols (values 0-7)
|
|
|
|
integer*4 i4tone(85) !Tone #s, data and sync (values 0-8)
|
2012-10-22 15:18:24 -04:00
|
|
|
include 'jt9sync.f90'
|
2012-09-27 15:10:15 -04:00
|
|
|
save
|
|
|
|
|
2012-11-16 13:25:27 -05:00
|
|
|
message=msg0
|
2012-10-30 11:02:27 -04:00
|
|
|
do i=1,22
|
2012-11-16 13:25:27 -05:00
|
|
|
if(ichar(message(i:i)).eq.0) then
|
|
|
|
message(i:)=' '
|
|
|
|
exit
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
|
2013-07-08 09:17:22 -04:00
|
|
|
do i=1,22 !Strip leading blanks
|
2012-10-30 11:02:27 -04:00
|
|
|
if(message(1:1).ne.' ') exit
|
|
|
|
message=message(i+1:)
|
|
|
|
enddo
|
|
|
|
|
2014-10-18 20:56:41 -04:00
|
|
|
call packmsg(message,i4Msg6BitWords,itype) !Pack into 12 6-bit bytes
|
2012-11-24 12:03:54 -05:00
|
|
|
call unpackmsg(i4Msg6BitWords,msgsent) !Unpack to get msgsent
|
2012-12-11 13:50:07 -05:00
|
|
|
if(ichk.ne.0) go to 999
|
2012-10-17 15:58:35 -04:00
|
|
|
call entail(i4Msg6BitWords,i1Msg8BitBytes) !Add tail, convert to 8-bit bytes
|
2012-09-28 14:07:07 -04:00
|
|
|
nsym2=206
|
2012-10-17 15:58:35 -04:00
|
|
|
call encode232(i1Msg8BitBytes,nsym2,i1EncodedBits) !Encode K=32, r=1/2
|
|
|
|
call interleave9(i1EncodedBits,1,i1ScrambledBits) !Interleave the bits
|
|
|
|
call packbits(i1ScrambledBits,nsym2,3,i4DataSymbols) !Pack 3-bits into words
|
|
|
|
call graycode(i4DataSymbols,69,1,i4GrayCodedSymbols) !Apply Gray code
|
2012-09-27 15:10:15 -04:00
|
|
|
|
2012-10-17 15:58:35 -04:00
|
|
|
! Insert sync symbols at ntone=0 and add 1 to the data-tone numbers.
|
2012-09-28 14:07:07 -04:00
|
|
|
j=0
|
|
|
|
do i=1,85
|
|
|
|
if(isync(i).eq.1) then
|
2012-10-17 15:58:35 -04:00
|
|
|
i4tone(i)=0
|
2012-09-28 14:07:07 -04:00
|
|
|
else
|
|
|
|
j=j+1
|
2012-10-17 15:58:35 -04:00
|
|
|
i4tone(i)=i4GrayCodedSymbols(j)+1
|
2012-09-28 14:07:07 -04:00
|
|
|
endif
|
|
|
|
enddo
|
2012-09-27 15:10:15 -04:00
|
|
|
|
2012-11-12 11:33:45 -05:00
|
|
|
999 return
|
2012-09-27 15:10:15 -04:00
|
|
|
end subroutine genjt9
|