| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  | subroutine decode65b(s2,nflip,nadd,mode65,ntrials,naggressive,ndepth,      &
 | 
					
						
							| 
									
										
										
										
											2018-03-05 14:49:51 -05:00
										 |  |  |      mycall,hiscall,hisgrid,nQSOProgress,ljt65apon,nexp_decode,nqd,        &
 | 
					
						
							|  |  |  |      nft,qual,         &
 | 
					
						
							|  |  |  |      nhist,decoded)
 | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |   use jt65_mod
 | 
					
						
							|  |  |  |   real s2(66,126)
 | 
					
						
							|  |  |  |   real s3(64,63)
 | 
					
						
							| 
									
										
										
										
											2018-03-05 14:49:51 -05:00
										 |  |  |   logical ltext,ljt65apon
 | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  |   character decoded*22
 | 
					
						
							|  |  |  |   character mycall*12,hiscall*12,hisgrid*6
 | 
					
						
							|  |  |  |   save
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   if(nqd.eq.-99) stop                !Silence compiler warning
 | 
					
						
							|  |  |  |   do j=1,63
 | 
					
						
							|  |  |  |      k=mdat(j)                       !Points to data symbol
 | 
					
						
							|  |  |  |      if(nflip.lt.0) k=mdat2(j)
 | 
					
						
							|  |  |  |      do i=1,64
 | 
					
						
							|  |  |  |         s3(i,j)=s2(i+2,k)
 | 
					
						
							|  |  |  |      enddo
 | 
					
						
							|  |  |  |   enddo
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   call extract(s3,nadd,mode65,ntrials,naggressive,ndepth,nflip,mycall,   &
 | 
					
						
							| 
									
										
										
										
											2018-03-05 14:49:51 -05:00
										 |  |  |       hiscall,hisgrid,nQSOProgress,ljt65apon,nexp_decode,ncount,         &
 | 
					
						
							|  |  |  |       nhist,decoded,ltext,nft,qual) 
 | 
					
						
							| 
									
										
										
										
											2018-02-08 21:28:33 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | ! Suppress "birdie messages" and other garbage decodes:
 | 
					
						
							|  |  |  |   if(decoded(1:7).eq.'000AAA ') ncount=-1
 | 
					
						
							|  |  |  |   if(decoded(1:7).eq.'0L6MWK ') ncount=-1
 | 
					
						
							|  |  |  |   if(nflip.lt.0 .and. ltext) ncount=-1
 | 
					
						
							|  |  |  |   if(ncount.lt.0) then 
 | 
					
						
							|  |  |  |      nft=0
 | 
					
						
							|  |  |  |      decoded='                      '
 | 
					
						
							|  |  |  |   endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   return
 | 
					
						
							|  |  |  | end subroutine decode65b
 |