2020-10-25 13:58:18 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								module q65_decode
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-12 11:28:46 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  type :: q65_decoder
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								     procedure(q65_decode_callback), pointer :: callback
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								   contains
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-12 11:28:46 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								     procedure :: decode
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  end type q65_decoder
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-12 11:28:46 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  abstract interface
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-13 10:55:01 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								     subroutine q65_decode_callback (this,nutc,snr1,nsnr,dt,freq,    &
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 15:30:17 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          decoded,idec,nused,ntrperiod)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-12 11:28:46 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       import q65_decoder
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       implicit none
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       class(q65_decoder), intent(inout) :: this
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       integer, intent(in) :: nutc
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-13 10:55:01 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       real, intent(in) :: snr1
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-12 11:28:46 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       integer, intent(in) :: nsnr
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       real, intent(in) :: dt
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       real, intent(in) :: freq
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       character(len=37), intent(in) :: decoded
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 13:23:09 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       integer, intent(in) :: idec
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 15:30:17 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       integer, intent(in) :: nused
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-12 11:28:46 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       integer, intent(in) :: ntrperiod
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								     end subroutine q65_decode_callback
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  end interface
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								contains
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-24 09:51:02 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								  subroutine decode(this,callback,iwave,nutc,ntrperiod,nsubmode,nfqso,      &
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-16 12:21:13 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       ntol,ndepth,nfa0,nfb0,lclearave,emedelay,mycall,hiscall,hisgrid,       &
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       nQSOprogress,ncontest,lapcqonly,navg0)
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 13:13:40 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! Top-level routine that organizes the decoding of Q65 signals
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-09 13:16:25 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! Input:  iwave            Raw data, i*2
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!         nutc             UTC for time-tagging the decode
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!         ntrperiod        T/R sequence length (s)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!         nsubmode         Tone-spacing indicator, 0-4 for A-E
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!         nfqso            Target signal frequency (Hz)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!         ntol             Search range around nfqso (Hz)
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-11 11:14:02 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								!         ndepth           Optional decoding level
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 13:13:40 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								!         lclearave        Flag to clear the message-averaging arrays
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!         emedelay         Sync search extended to cover EME delays
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!         nQSOprogress     Auto-sequencing state for the present QSO
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!         ncontest         Supported contest type
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!         lapcqonly        Flag to use AP only for CQ calls
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-09 13:16:25 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! Output: sent to the callback routine for display to user
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    use timer_module, only: timer
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-27 13:08:07 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    use packjt77
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    use, intrinsic :: iso_c_binding
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-28 15:27:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    use q65                               !Shared variables
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-27 15:27:26 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								 
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-09 13:16:25 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    parameter (NMAX=300*12000)            !Max TRperiod is 300 s
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-25 13:58:18 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    class(q65_decoder), intent(inout) :: this
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    procedure(q65_decode_callback) :: callback
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-09 13:16:25 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    character(len=12) :: mycall, hiscall  !Used for AP decoding
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    character(len=6) :: hisgrid
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-09 13:16:25 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    character*37 decoded                  !Decoded message
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-27 13:08:07 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    character*77 c77
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-30 11:07:44 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    character*78 c78
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 15:30:17 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    character*6 cutc
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-08 09:14:12 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    integer*2 iwave(NMAX)                 !Raw data
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-17 13:16:46 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    real, allocatable :: dd(:)            !Raw data
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-27 13:22:02 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    integer dat4(13)                      !Decoded message as 12 6-bit integers
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-22 13:58:29 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    integer dgen(13)
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-24 09:51:02 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    logical lclearave,lapcqonly,unpk77_success
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-09 13:16:25 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    complex, allocatable :: c00(:)        !Analytic signal, 6000 Sa/s
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    complex, allocatable :: c0(:)         !Analytic signal, 6000 Sa/s
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 12:13:49 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 13:13:40 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! Start by setting some parameters and allocating storage for large arrays
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-16 12:21:13 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    nfa=nfa0
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    nfb=nfb0
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-30 16:12:02 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    idec=-1
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-13 11:21:59 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    mode_q65=2**nsubmode
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-15 12:21:08 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    npts=ntrperiod*12000
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-08 09:14:12 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    nfft1=ntrperiod*12000
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    nfft2=ntrperiod*6000
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 15:30:17 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								! Determine the T/R sequence: iseq=0 (even), or iseq=1 (odd)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    n=nutc
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if(ntrperiod.ge.60) n=100*n
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    write(cutc,'(i6.6)') n
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    read(cutc,'(3i2)') ih,im,is
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    nsec=3600*ih + 60*im + is
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    iseq=mod(nsec/ntrperiod,2)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 14:56:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    if(lclearave) call q65_clravg
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-15 12:21:08 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    allocate(dd(npts))
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-08 16:48:11 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    allocate (c00(0:nfft1-1))
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-08 13:57:24 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    allocate (c0(0:nfft1-1))
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-09 11:04:49 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-08 09:14:12 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    if(ntrperiod.eq.15) then
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       nsps=1800
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    else if(ntrperiod.eq.30) then
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       nsps=3600
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    else if(ntrperiod.eq.60) then
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-25 14:10:38 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       nsps=7200
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-08 09:14:12 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    else if(ntrperiod.eq.120) then
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       nsps=16000
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    else if(ntrperiod.eq.300) then
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       nsps=41472
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    else
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-09 14:12:34 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       stop 'Invalid TR period'
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    endif
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-08 09:42:07 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-09 14:12:34 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    baud=12000.0/nsps
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-29 10:53:30 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    this%callback => callback
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-09 14:12:34 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    nFadingModel=1
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-13 11:21:59 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    ibwa=max(1,int(1.8*log(baud*mode_q65)) + 2)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-08 09:42:07 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    ibwb=min(10,ibwa+4)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if(iand(ndepth,3).eq.3) then
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       ibwa=max(1,ibwa-1)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       ibwb=min(10,ibwb+1)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    endif
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 14:56:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! Generate codewords for full-AP list decoding    
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-06 15:48:21 +00:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    call q65_set_list(mycall,hiscall,hisgrid,codewords,ncw) 
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-30 09:52:47 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    dgen=0
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-28 15:27:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    call q65_enc(dgen,codewords)         !Initialize the Q65 codec
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 14:56:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    nused=1
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 15:39:48 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    iavg=0
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-13 14:34:20 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    call timer('q65_dec0',0)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 13:13:40 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! Call top-level routine in q65 module: establish sync and try for a q3 decode.
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 15:39:48 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    call q65_dec0(iavg,nutc,iwave,ntrperiod,nfqso,ntol,ndepth,lclearave,  &
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 13:13:40 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								         emedelay,xdt,f0,snr1,width,dat4,snr2,idec)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 14:56:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								!    idec=-1   !### TEMPORARY ###
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-13 14:34:20 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    call timer('q65_dec0',1)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 13:13:40 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-29 16:41:48 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    if(idec.ge.0) then
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 14:11:21 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       dtdec=xdt                          !We have a list-decode result
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       f0dec=f0
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-29 16:41:48 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       go to 100
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-30 09:52:47 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    endif
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-08 09:42:07 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-21 15:59:33 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    if(snr1.lt.2.8) then
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 14:11:21 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       dtdec=0.                   !No reliable sync, abandon decoding attempt
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       f0dec=0.
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-21 15:59:33 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       go to 100
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    endif
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 14:56:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								! Prepare for a single-period decode woth iaptype = 0, 1, or 2  (also 4?)
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-28 15:27:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    jpk0=(xdt+1.0)*6000                      !Index of nominal start of signal
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if(ntrperiod.le.30) jpk0=(xdt+0.5)*6000  !For shortest sequences
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-30 11:07:44 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    if(jpk0.lt.0) jpk0=0
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    fac=1.0/32767.0
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-15 12:21:08 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    dd=fac*iwave(1:npts)
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-28 15:27:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    call ana64(dd,npts,c00)              !Convert to complex c00() at 6000 Sa/s
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 14:56:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    call ft8apset(mycall,hiscall,ncontest,apsym0,aph10) ! Generate ap symbols
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-30 11:07:44 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    where(apsym0.eq.-1) apsym0=0
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    npasses=2
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if(nQSOprogress.eq.5) npasses=3
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if(lapcqonly) npasses=1
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-11 15:06:24 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    iaptype=0
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 14:56:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    do ipass=0,npasses                  !Loop over AP passes
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-28 15:27:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       apmask=0                         !Try first with no AP information
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-30 11:07:44 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       apsymbols=0
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       if(ipass.ge.1) then
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-28 15:27:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          ! Subsequent passes use AP information appropiate for nQSOprogress
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-11 15:06:24 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          call q65_ap(nQSOprogress,ipass,ncontest,lapcqonly,iaptype,   &
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								               apsym0,apmask1,apsymbols1)
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-30 11:07:44 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								          write(c78,1050) apmask1
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								1050      format(78i1)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          read(c78,1060) apmask
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								1060      format(13b6.6)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          write(c78,1050) apsymbols1
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          read(c78,1060) apsymbols
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       endif
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-28 15:27:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-27 13:08:07 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       call timer('q65loops',0)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-13 11:21:59 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       call q65_loops(c00,npts/2,nsps/2,nsubmode,ndepth,jpk0,   &
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-30 15:05:02 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								            xdt,f0,iaptype,xdt1,f1,snr2,dat4,idec)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 14:56:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								!       idec=-1   !### TEMPORARY ###
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-27 13:08:07 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       call timer('q65loops',1)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 14:11:21 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       if(idec.ge.0) then
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          dtdec=xdt1
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          f0dec=f1
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								          go to 100       !Successful decode, we're done
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       endif
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 15:52:51 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    enddo  ! ipass
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-30 11:07:44 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 16:06:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    if(iand(ndepth,16).eq.0 .or. navg(iseq).lt.2) go to 100
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 15:19:33 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! There was no single-transmission decode. Try for an average 'q3n' decode.
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-15 12:40:38 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    call timer('list_avg',0)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 15:52:51 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! Call top-level routine in q65 module: establish sync and try for a q3
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								! decode, this time using the cumulative 's1a' symbol spectra.
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-15 12:40:38 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    iavg=1
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    call q65_dec0(iavg,nutc,iwave,ntrperiod,nfqso,ntol,ndepth,lclearave,  &
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								         emedelay,xdt,f0,snr1,width,dat4,snr2,idec)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    call timer('list_avg',1)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    if(idec.ge.0) then
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 14:11:21 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       dtdec=xdt               !We have a list-decode result from averaged data
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       f0dec=f0
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 16:06:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       nused=navg(iseq)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-15 12:40:38 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       go to 100
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    endif
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 15:19:33 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								! There was no 'q3n' decode.  Try for a 'q[012]n' decode.
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-15 12:40:38 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! Call top-level routine in q65 module: establish sync and try for a q[012]n
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								! decode, this time using the cumulative 's1a' symbol spectra.
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    call timer('q65_avg ',0)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    iavg=2
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    call q65_dec0(iavg,nutc,iwave,ntrperiod,nfqso,ntol,ndepth,lclearave,  &
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								         emedelay,xdt,f0,snr1,width,dat4,snr2,idec)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    call timer('q65_avg ',1)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 14:11:21 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    if(idec.ge.0) then
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       dtdec=xdt                          !We have a q[012]n result
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       f0dec=f0
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 16:06:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       nused=navg(iseq)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 14:11:21 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    endif
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-15 12:40:38 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-30 11:07:44 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								100 decoded='                                     '
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 13:13:40 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    if(idec.ge.0) then
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-30 10:42:27 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! idec Meaning
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								! ------------------------------------------------------
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								! -1:  No decode
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-14 14:56:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								!  0:  Decode without AP information
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!  1:  Decode with AP for "CQ        ?   ?"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!  2:  Decode with AP for "MyCall    ?   ?"
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								!  3:  Decode with AP for "MyCall DxCall ?"
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-30 10:42:27 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-12-28 15:27:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! Unpack decoded message for display to user
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-11 15:06:24 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       write(c77,1000) dat4(1:12),dat4(13)/2
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-27 13:08:07 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								1000   format(12b6.6,b5.5)
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       call unpack77(c77,0,decoded,unpk77_success) !Unpack to get msgsent
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								       nsnr=nint(snr2)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 15:30:17 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       call this%callback(nutc,snr1,nsnr,dtdec,f0dec,decoded,    &
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								            idec,nused,ntrperiod)
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-15 14:12:52 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       if(iand(ndepth,128).ne.0) call q65_clravg    !AutoClrAvg after decode
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    else
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-13 10:55:01 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								! Report snr1, even if no decode.
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-27 16:08:50 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       nsnr=db(snr1) - 35.0
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-15 12:40:38 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       if(nsnr.lt.-35) nsnr=-35
							 | 
						
					
						
							
								
									
										
										
										
											2020-11-30 14:13:37 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       idec=-1
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 14:11:21 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								       call this%callback(nutc,snr1,nsnr,xdt,f0,decoded,              &
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-16 12:21:13 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								            idec,0,ntrperiod)
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    endif
							 | 
						
					
						
							
								
									
										
										
										
											2021-01-19 16:06:10 -05:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								    navg0=1000*navg(0) + navg(1)
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 15:12:37 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-08-01 09:24:59 -04:00
										 
									 
								 
							 | 
							
								
							 | 
							
								
							 | 
							
							
								    return
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								  end subroutine decode
							 | 
						
					
						
							| 
								
							 | 
							
								
							 | 
							
								
							 | 
							
							
								
							 | 
						
					
						
							
								
									
										
										
										
											2020-10-25 13:58:18 -04:00
										 
									 
								 
							 | 
							
								
									
										
									
								
							 | 
							
								
							 | 
							
							
								end module q65_decode
							 |