2018-07-29 17:29:11 -04:00
|
|
|
subroutine ft8apset(mycall12,hiscall12,apsym)
|
2017-07-14 15:35:22 -04:00
|
|
|
parameter(NAPM=4,KK=87)
|
|
|
|
character*12 mycall12,hiscall12
|
2018-07-05 16:32:04 -04:00
|
|
|
character*37 msg,msgsent
|
2017-07-14 15:35:22 -04:00
|
|
|
character*6 mycall,hiscall
|
2018-07-11 16:32:08 -04:00
|
|
|
character*6 hisgrid6
|
2017-07-14 15:35:22 -04:00
|
|
|
character*4 hisgrid
|
2018-07-29 17:29:11 -04:00
|
|
|
integer apsym(75)
|
|
|
|
integer*1 msgbits(77)
|
|
|
|
integer itone(79)
|
2017-07-14 15:35:22 -04:00
|
|
|
|
|
|
|
mycall=mycall12(1:6)
|
|
|
|
hiscall=hiscall12(1:6)
|
2018-07-29 17:29:11 -04:00
|
|
|
if(len(trim(hiscall)).eq.0) hiscall="K9ABC"
|
|
|
|
msg=mycall//' '//hiscall//' RRR'
|
|
|
|
i3=0
|
|
|
|
n3=0
|
2018-07-03 15:37:50 -04:00
|
|
|
isync=1
|
2018-07-11 16:32:08 -04:00
|
|
|
call genft8(msg,i3,n3,isync,msgsent,msgbits,itone)
|
2018-07-29 17:29:11 -04:00
|
|
|
apsym=2*msgbits(1:75)-1
|
2017-07-14 15:35:22 -04:00
|
|
|
return
|
2017-07-28 11:50:13 -04:00
|
|
|
end subroutine ft8apset
|