Merge branch 'develop' of bitbucket.org:k1jt/wsjtx into develop

This commit is contained in:
Joe Taylor 2020-02-26 13:16:12 -05:00
commit b9888a09ff
9 changed files with 287 additions and 223 deletions

View File

@ -1308,9 +1308,6 @@ target_link_libraries (ft8code wsjt_fort wsjt_cxx)
add_executable (ft4code lib/ft4/ft4code.f90 wsjtx.rc) add_executable (ft4code lib/ft4/ft4code.f90 wsjtx.rc)
target_link_libraries (ft4code wsjt_fort wsjt_cxx) target_link_libraries (ft4code wsjt_fort wsjt_cxx)
add_executable (ft8 lib/ft8.f90 wsjtx.rc)
target_link_libraries (ft8 wsjt_fort wsjt_cxx)
add_executable (ft8sim_fsk lib/ft8/ft8sim_fsk.f90 wsjtx.rc) add_executable (ft8sim_fsk lib/ft8/ft8sim_fsk.f90 wsjtx.rc)
target_link_libraries (ft8sim_fsk wsjt_fort wsjt_cxx) target_link_libraries (ft8sim_fsk wsjt_fort wsjt_cxx)

View File

@ -110,11 +110,12 @@ elseif(ndeep.eq.2) then
npre1=1 npre1=1
npre2=0 npre2=0
nt=66 nt=66
ntheta=16 ntheta=22
ntau = 16
elseif(ndeep.eq.3) then elseif(ndeep.eq.3) then
nord=2 nord=1
npre1=1 npre1=1
npre2=0 npre2=1
nt=66 nt=66
ntheta=22 ntheta=22
ntau=16 ntau=16
@ -128,10 +129,10 @@ elseif(ndeep.eq.4) then
elseif(ndeep.eq.5) then elseif(ndeep.eq.5) then
nord=3 nord=3
npre1=1 npre1=1
npre2=0 npre2=1
nt=66 nt=66
ntheta=22 ntheta=22
ntau=20 ntau=16
endif endif
do iorder=1,nord do iorder=1,nord

View File

@ -83,7 +83,7 @@ unsigned long readc2file(char *ptr_to_infile, float *idat, float *qdat,
fread(&ntrmin,sizeof(int),1,fp); fread(&ntrmin,sizeof(int),1,fp);
fread(&dfreq,sizeof(double),1,fp); fread(&dfreq,sizeof(double),1,fp);
*freq=dfreq; *freq=dfreq;
buffer=calloc(2*65536,sizeof(float)); buffer=calloc(2*65536,sizeof(float));
unsigned long nread=fread(buffer,sizeof(float),2*45000,fp); unsigned long nread=fread(buffer,sizeof(float),2*45000,fp);
fclose(fp); fclose(fp);
@ -139,7 +139,7 @@ unsigned long readwavfile(char *ptr_to_infile, int ntrmin, float *idat, float *q
fprintf(stderr, "Cannot open data file '%s'\n", ptr_to_infile); fprintf(stderr, "Cannot open data file '%s'\n", ptr_to_infile);
return 1; return 1;
} }
buf2 = calloc(npoints,sizeof(short int)); buf2 = calloc(npoints,sizeof(short int));
fread(buf2,2,22,fp); //Read and ignore header fread(buf2,2,22,fp); //Read and ignore header
fread(buf2,2,npoints,fp); //Read raw data fread(buf2,2,npoints,fp); //Read raw data
@ -202,7 +202,7 @@ void sync_and_demodulate(float *id, float *qd, long np,
static float dt=1.0/375.0, df=375.0/256.0; static float dt=1.0/375.0, df=375.0/256.0;
static float pi=3.14159265358979323846; static float pi=3.14159265358979323846;
float twopidt, df15=df*1.5, df05=df*0.5; float twopidt, df15=df*1.5, df05=df*0.5;
int i, j, k, lag; int i, j, k, lag;
float i0[162],q0[162],i1[162],q1[162],i2[162],q2[162],i3[162],q3[162]; float i0[162],q0[162],i1[162],q1[162],i2[162],q2[162],i3[162],q3[162];
float p0,p1,p2,p3,cmet,totp,syncmax,fac; float p0,p1,p2,p3,cmet,totp,syncmax,fac;
@ -211,7 +211,7 @@ void sync_and_demodulate(float *id, float *qd, long np,
dphi3, cdphi3, sdphi3; dphi3, cdphi3, sdphi3;
float f0=0.0, fp, ss, fbest=0.0, fsum=0.0, f2sum=0.0, fsymb[162]; float f0=0.0, fp, ss, fbest=0.0, fsum=0.0, f2sum=0.0, fsymb[162];
int best_shift = 0, ifreq; int best_shift = 0, ifreq;
syncmax=-1e30; syncmax=-1e30;
if( mode == 0 ) {ifmin=0; ifmax=0; fstep=0.0; f0=*f1;} if( mode == 0 ) {ifmin=0; ifmax=0; fstep=0.0; f0=*f1;}
if( mode == 1 ) {lagmin=*shift1;lagmax=*shift1;f0=*f1;} if( mode == 1 ) {lagmin=*shift1;lagmax=*shift1;f0=*f1;}
@ -282,7 +282,7 @@ void sync_and_demodulate(float *id, float *qd, long np,
p1=i1[i]*i1[i] + q1[i]*q1[i]; p1=i1[i]*i1[i] + q1[i]*q1[i];
p2=i2[i]*i2[i] + q2[i]*q2[i]; p2=i2[i]*i2[i] + q2[i]*q2[i];
p3=i3[i]*i3[i] + q3[i]*q3[i]; p3=i3[i]*i3[i] + q3[i]*q3[i];
p0=sqrt(p0); p0=sqrt(p0);
p1=sqrt(p1); p1=sqrt(p1);
p2=sqrt(p2); p2=sqrt(p2);
@ -334,12 +334,12 @@ void sync_and_demodulate(float *id, float *qd, long np,
} }
void noncoherent_sequence_detection(float *id, float *qd, long np, void noncoherent_sequence_detection(float *id, float *qd, long np,
unsigned char *symbols, float *f1, int *shift1, unsigned char *symbols, float *f1, int *shift1,
float *drift1, int symfac, int *nblocksize) float *drift1, int symfac, int *nblocksize, int *bitmetric)
{ {
/************************************************************************ /************************************************************************
* Noncoherent sequence detection for wspr. * * Noncoherent sequence detection for wspr. *
* Allowed block lengths are nblock=1,2,3,6, or 9 symbols. * * Allowed block lengths are nblock=1,2,3,6, or 9 symbols. *
* Longer block lengths require longer channel coherence time. * * Longer block lengths require longer channel coherence time. *
* The whole block is estimated at once. * * The whole block is estimated at once. *
* nblock=1 corresponds to noncoherent detection of individual symbols * * nblock=1 corresponds to noncoherent detection of individual symbols *
@ -364,31 +364,32 @@ void noncoherent_sequence_detection(float *id, float *qd, long np,
lag=*shift1; lag=*shift1;
nblock=*nblocksize; nblock=*nblocksize;
nseq=1<<nblock; nseq=1<<nblock;
int bitbybit=*bitmetric;
for (i=0; i<162; i++) { for (i=0; i<162; i++) {
fp = f0 + (*drift1/2.0)*((float)i-81.0)/81.0; fp = f0 + (*drift1/2.0)*((float)i-81.0)/81.0;
if( i==0 || (fp != fplast) ) { // only calculate sin/cos if necessary if( i==0 || (fp != fplast) ) { // only calculate sin/cos if necessary
dphi0=twopidt*(fp-df15); dphi0=twopidt*(fp-df15);
cdphi0=cos(dphi0); cdphi0=cos(dphi0);
sdphi0=sin(dphi0); sdphi0=sin(dphi0);
dphi1=twopidt*(fp-df05); dphi1=twopidt*(fp-df05);
cdphi1=cos(dphi1); cdphi1=cos(dphi1);
sdphi1=sin(dphi1); sdphi1=sin(dphi1);
dphi2=twopidt*(fp+df05); dphi2=twopidt*(fp+df05);
cdphi2=cos(dphi2); cdphi2=cos(dphi2);
sdphi2=sin(dphi2); sdphi2=sin(dphi2);
dphi3=twopidt*(fp+df15); dphi3=twopidt*(fp+df15);
cdphi3=cos(dphi3); cdphi3=cos(dphi3);
sdphi3=sin(dphi3); sdphi3=sin(dphi3);
c0[0]=1; s0[0]=0; c0[0]=1; s0[0]=0;
c1[0]=1; s1[0]=0; c1[0]=1; s1[0]=0;
c2[0]=1; s2[0]=0; c2[0]=1; s2[0]=0;
c3[0]=1; s3[0]=0; c3[0]=1; s3[0]=0;
for (j=1; j<257; j++) { for (j=1; j<257; j++) {
c0[j]=c0[j-1]*cdphi0 - s0[j-1]*sdphi0; c0[j]=c0[j-1]*cdphi0 - s0[j-1]*sdphi0;
s0[j]=c0[j-1]*sdphi0 + s0[j-1]*cdphi0; s0[j]=c0[j-1]*sdphi0 + s0[j-1]*cdphi0;
@ -399,20 +400,20 @@ void noncoherent_sequence_detection(float *id, float *qd, long np,
c3[j]=c3[j-1]*cdphi3 - s3[j-1]*sdphi3; c3[j]=c3[j-1]*cdphi3 - s3[j-1]*sdphi3;
s3[j]=c3[j-1]*sdphi3 + s3[j-1]*cdphi3; s3[j]=c3[j-1]*sdphi3 + s3[j-1]*cdphi3;
} }
fplast = fp; fplast = fp;
} }
cf[0][i]=c0[256]; sf[0][i]=s0[256]; cf[0][i]=c0[256]; sf[0][i]=s0[256];
cf[1][i]=c1[256]; sf[1][i]=s1[256]; cf[1][i]=c1[256]; sf[1][i]=s1[256];
cf[2][i]=c2[256]; sf[2][i]=s2[256]; cf[2][i]=c2[256]; sf[2][i]=s2[256];
cf[3][i]=c3[256]; sf[3][i]=s3[256]; cf[3][i]=c3[256]; sf[3][i]=s3[256];
is[0][i]=0.0; qs[0][i]=0.0; is[0][i]=0.0; qs[0][i]=0.0;
is[1][i]=0.0; qs[1][i]=0.0; is[1][i]=0.0; qs[1][i]=0.0;
is[2][i]=0.0; qs[2][i]=0.0; is[2][i]=0.0; qs[2][i]=0.0;
is[3][i]=0.0; qs[3][i]=0.0; is[3][i]=0.0; qs[3][i]=0.0;
for (j=0; j<256; j++) { for (j=0; j<256; j++) {
k=lag+i*256+j; k=lag+i*256+j;
if( (k>0) && (k<np) ) { if( (k>0) && (k<np) ) {
@ -427,7 +428,7 @@ void noncoherent_sequence_detection(float *id, float *qd, long np,
} }
} }
} }
for (i=0; i<162; i=i+nblock) { for (i=0; i<162; i=i+nblock) {
for (j=0;j<nseq;j++) { for (j=0;j<nseq;j++) {
xi[j]=0.0; xq[j]=0.0; xi[j]=0.0; xq[j]=0.0;
@ -456,6 +457,9 @@ void noncoherent_sequence_detection(float *id, float *qd, long np,
} }
} }
fsymb[i+ib]=xm1-xm0; fsymb[i+ib]=xm1-xm0;
if( bitbybit == 1 ) {
fsymb[i+ib]=fsymb[i+ib]/(xm1 > xm0 ? xm1 : xm0);
}
} }
} }
for (i=0; i<162; i++) { //Normalize the soft symbols for (i=0; i<162; i++) { //Normalize the soft symbols
@ -529,26 +533,26 @@ void subtract_signal(float *id, float *qd, long np,
return; return;
} }
/****************************************************************************** /******************************************************************************
Fully coherent signal subtraction Subtract the coherent component of a signal
*******************************************************************************/ *******************************************************************************/
void subtract_signal2(float *id, float *qd, long np, void subtract_signal2(float *id, float *qd, long np,
float f0, int shift0, float drift0, unsigned char* channel_symbols) float f0, int shift0, float drift0, unsigned char* channel_symbols)
{ {
float dt=1.0/375.0, df=375.0/256.0; float dt=1.0/375.0, df=375.0/256.0;
float pi=4.*atan(1.0), twopidt, phi=0, dphi, cs; float pi=4.*atan(1.0), twopidt, phi=0, dphi, cs;
int i, j, k, ii, nsym=162, nspersym=256, nfilt=256; //nfilt must be even number. int i, j, k, ii, nsym=162, nspersym=256, nfilt=360; //nfilt must be even number.
int nsig=nsym*nspersym; int nsig=nsym*nspersym;
int nc2=45000; int nc2=45000;
float *refi, *refq, *ci, *cq, *cfi, *cfq; float *refi, *refq, *ci, *cq, *cfi, *cfq;
refi=calloc(nc2,sizeof(float)); refi=calloc(nc2,sizeof(float));
refq=calloc(nc2,sizeof(float)); refq=calloc(nc2,sizeof(float));
ci=calloc(nc2,sizeof(float)); ci=calloc(nc2,sizeof(float));
cq=calloc(nc2,sizeof(float)); cq=calloc(nc2,sizeof(float));
cfi=calloc(nc2,sizeof(float)); cfi=calloc(nc2,sizeof(float));
cfq=calloc(nc2,sizeof(float)); cfq=calloc(nc2,sizeof(float));
twopidt=2.0*pi*dt; twopidt=2.0*pi*dt;
/****************************************************************************** /******************************************************************************
@ -578,7 +582,21 @@ void subtract_signal2(float *id, float *qd, long np,
phi=phi+dphi; phi=phi+dphi;
} }
} }
float w[nfilt], norm=0, partialsum[nfilt];
//lowpass filter and remove startup transient
for (i=0; i<nfilt; i++) partialsum[i]=0.0;
for (i=0; i<nfilt; i++) {
w[i]=sin(pi*(float)i/(float)(nfilt-1));
norm=norm+w[i];
}
for (i=0; i<nfilt; i++) {
w[i]=w[i]/norm;
}
for (i=1; i<nfilt; i++) {
partialsum[i]=partialsum[i-1]+w[i];
}
// s(t) * conjugate(r(t)) // s(t) * conjugate(r(t))
// beginning of first symbol in reference signal is at i=0 // beginning of first symbol in reference signal is at i=0
// beginning of first symbol in received data is at shift0. // beginning of first symbol in received data is at shift0.
@ -591,21 +609,7 @@ void subtract_signal2(float *id, float *qd, long np,
cq[i+nfilt] = qd[k]*refi[i] - id[k]*refq[i]; cq[i+nfilt] = qd[k]*refi[i] - id[k]*refq[i];
} }
} }
//lowpass filter and remove startup transient
float w[nfilt], norm=0, partialsum[nfilt];
for (i=0; i<nfilt; i++) partialsum[i]=0.0;
for (i=0; i<nfilt; i++) {
w[i]=sin(pi*(float)i/(float)(nfilt-1));
norm=norm+w[i];
}
for (i=0; i<nfilt; i++) {
w[i]=w[i]/norm;
}
for (i=1; i<nfilt; i++) {
partialsum[i]=partialsum[i-1]+w[i];
}
// LPF // LPF
for (i=nfilt/2; i<45000-nfilt/2; i++) { for (i=nfilt/2; i<45000-nfilt/2; i++) {
cfi[i]=0.0; cfq[i]=0.0; cfi[i]=0.0; cfq[i]=0.0;
@ -614,9 +618,9 @@ void subtract_signal2(float *id, float *qd, long np,
cfq[i]=cfq[i]+w[j]*cq[i-nfilt/2+j]; cfq[i]=cfq[i]+w[j]*cq[i-nfilt/2+j];
} }
} }
// subtract c(t)*r(t) here // subtract c(t)*r(t) here
// (ci+j*cq)(refi+j*refq)=(ci*refi-cq*refq)+j(ci*refq)+cq*refi) // (ci+j*cq)(refi+j*refq)=(ci*refi-cq*refq)+j(ci*refq+cq*refi)
// beginning of first symbol in reference signal is at i=nfilt // beginning of first symbol in reference signal is at i=nfilt
// beginning of first symbol in received data is at shift0. // beginning of first symbol in received data is at shift0.
for (i=0; i<nsig; i++) { for (i=0; i<nsig; i++) {
@ -641,7 +645,7 @@ void subtract_signal2(float *id, float *qd, long np,
free(cq); free(cq);
free(cfi); free(cfi);
free(cfq); free(cfq);
return; return;
} }
@ -675,6 +679,23 @@ unsigned long writec2file(char *c2filename, int trmin, double freq
} }
} }
unsigned int count_hard_errors( unsigned char *symbols, unsigned char *channel_symbols)
{
int i,is;
unsigned char cw[162];
unsigned int nerrors;
for (i=0; i<162; i++) {
cw[i] = channel_symbols[i] >=2 ? 1:0;
}
deinterleave(cw);
nerrors=0;
for (i=0; i<162; i++) {
is = symbols[i] > 127 ? 1:0;
nerrors = nerrors + (is == cw[i] ? 0:1);
}
return nerrors;
}
//*************************************************************************** //***************************************************************************
void usage(void) void usage(void)
{ {
@ -710,7 +731,7 @@ int main(int argc, char *argv[])
int i,j,k; int i,j,k;
unsigned char *symbols, *decdata, *channel_symbols, *apmask, *cw; unsigned char *symbols, *decdata, *channel_symbols, *apmask, *cw;
signed char message[]={-9,13,-35,123,57,-39,64,0,0,0,0}; signed char message[]={-9,13,-35,123,57,-39,64,0,0,0,0};
char *callsign, *call_loc_pow; char *callsign, *grid, *call_loc_pow;
char *ptr_to_infile,*ptr_to_infile_suffix; char *ptr_to_infile,*ptr_to_infile_suffix;
char *data_dir=NULL; char *data_dir=NULL;
char wisdom_fname[200],all_fname[200],spots_fname[200]; char wisdom_fname[200],all_fname[200],spots_fname[200];
@ -720,13 +741,11 @@ int main(int argc, char *argv[])
int writenoise=0,usehashtable=1,wspr_type=2, ipass, nblocksize; int writenoise=0,usehashtable=1,wspr_type=2, ipass, nblocksize;
int nhardmin,ihash; int nhardmin,ihash;
int writec2=0,maxdrift; int writec2=0,maxdrift;
int shift1, lagmin, lagmax, lagstep, ifmin, ifmax, worth_a_try, not_decoded; int shift1, lagmin, lagmax, lagstep, ifmin, ifmax, not_decoded;
unsigned int nbits=81, stacksize=200000; unsigned int nbits=81, stacksize=200000;
unsigned int npoints, metric, cycles, maxnp; unsigned int npoints, cycles, maxnp, metric;
float df=375.0/256.0/2; float df=375.0/256.0/2;
float freq0[200],snr0[200],drift0[200],sync0[200];
float fsymbs[162]; float fsymbs[162];
int shift0[200];
float dt=1.0/375.0, dt_print; float dt=1.0/375.0, dt_print;
double dialfreq_cmdline=0.0, dialfreq, freq_print; double dialfreq_cmdline=0.0, dialfreq, freq_print;
double dialfreq_error=0.0; double dialfreq_error=0.0;
@ -737,16 +756,21 @@ int main(int argc, char *argv[])
float *idat, *qdat; float *idat, *qdat;
clock_t t0,t00; clock_t t0,t00;
float tfano=0.0,treadwav=0.0,tcandidates=0.0,tsync0=0.0; float tfano=0.0,treadwav=0.0,tcandidates=0.0,tsync0=0.0;
float tsync1=0.0,tsync2=0.0,ttotal=0.0; float tsync1=0.0,tsync2=0.0,tosd=0.0,ttotal=0.0;
struct cand { float freq; float snr; int shift; float drift; float sync; };
struct cand candidates[200];
struct result { char date[7]; char time[5]; float sync; float snr; struct result { char date[7]; char time[5]; float sync; float snr;
float dt; double freq; char message[23]; float drift; float dt; double freq; char message[23]; float drift;
unsigned int cycles; int jitter; int blocksize; unsigned int metric; unsigned int cycles; int jitter; int blocksize; unsigned int metric;
unsigned char osd_decode; }; int nhardmin; int ipass; int decodetype;};
struct result decodes[50]; struct result decodes[50];
char *hashtab; char *hashtab;
hashtab=calloc(32768*13,sizeof(char)); hashtab=calloc(32768*13,sizeof(char));
char *loctab;
loctab=calloc(32768*5,sizeof(char));
int nh; int nh;
symbols=calloc(nbits*2,sizeof(unsigned char)); symbols=calloc(nbits*2,sizeof(unsigned char));
apmask=calloc(162,sizeof(unsigned char)); apmask=calloc(162,sizeof(unsigned char));
@ -754,6 +778,7 @@ int main(int argc, char *argv[])
decdata=calloc(11,sizeof(unsigned char)); decdata=calloc(11,sizeof(unsigned char));
channel_symbols=calloc(nbits*2,sizeof(unsigned char)); channel_symbols=calloc(nbits*2,sizeof(unsigned char));
callsign=calloc(13,sizeof(char)); callsign=calloc(13,sizeof(char));
grid=calloc(5,sizeof(char));
call_loc_pow=calloc(23,sizeof(char)); call_loc_pow=calloc(23,sizeof(char));
float allfreqs[100]; float allfreqs[100];
char allcalls[100][13]; char allcalls[100][13];
@ -768,11 +793,10 @@ int main(int argc, char *argv[])
float minsync2=0.12; //Second sync limit float minsync2=0.12; //Second sync limit
int iifac=8; //Step size in final DT peakup int iifac=8; //Step size in final DT peakup
int symfac=50; //Soft-symbol normalizing factor int symfac=50; //Soft-symbol normalizing factor
int block_demod=1; //Default is to use block demod on pass 2
int subtraction=1; int subtraction=1;
int npasses=2; int npasses=3;
int ndepth=-1; //Depth for OSD int ndepth=-1; //Depth for OSD
float minrms=52.0 * (symfac/64.0); //Final test for plausible decoding float minrms=52.0 * (symfac/64.0); //Final test for plausible decoding
delta=60; //Fano threshold step delta=60; //Fano threshold step
float bias=0.45; //Fano metric bias (used for both Fano and stack algorithms) float bias=0.45; //Fano metric bias (used for both Fano and stack algorithms)
@ -791,8 +815,8 @@ int main(int argc, char *argv[])
case 'a': case 'a':
data_dir = optarg; data_dir = optarg;
break; break;
case 'B': case 'B':
block_demod=0; npasses=2;
break; break;
case 'c': case 'c':
writec2=1; writec2=1;
@ -825,7 +849,7 @@ int main(int argc, char *argv[])
case 'q': //no shift jittering case 'q': //no shift jittering
quickmode = 1; quickmode = 1;
break; break;
case 's': //single pass mode case 's': //single pass mode
subtraction = 0; subtraction = 0;
npasses = 1; npasses = 1;
break; break;
@ -891,10 +915,10 @@ int main(int argc, char *argv[])
// fdiag=fopen("wsprd_diag","a"); // fdiag=fopen("wsprd_diag","a");
if((ftimer=fopen(timer_fname,"r"))) { if((ftimer=fopen(timer_fname,"r"))) {
//Accumulate timing data //Accumulate timing data
fscanf(ftimer,"%f %f %f %f %f %f %f", fscanf(ftimer,"%f %f %f %f %f %f %f %f",
&treadwav,&tcandidates,&tsync0,&tsync1,&tsync2,&tfano,&ttotal); &treadwav,&tcandidates,&tsync0,&tsync1,&tsync2,&tfano,&tosd,&ttotal);
fclose(ftimer); fclose(ftimer);
} }
ftimer=fopen(timer_fname,"w"); ftimer=fopen(timer_fname,"w");
@ -927,7 +951,7 @@ int main(int argc, char *argv[])
strncpy(uttime,ptr_to_infile_suffix-4,4); strncpy(uttime,ptr_to_infile_suffix-4,4);
date[6]='\0'; date[6]='\0';
uttime[4]='\0'; uttime[4]='\0';
// Do windowed ffts over 2 symbols, stepped by half symbols // Do windowed ffts over 2 symbols, stepped by half symbols
int nffts=4*floor(npoints/512)-1; int nffts=4*floor(npoints/512)-1;
fftin=(fftwf_complex*) fftwf_malloc(sizeof(fftwf_complex)*512); fftin=(fftwf_complex*) fftwf_malloc(sizeof(fftwf_complex)*512);
@ -941,35 +965,32 @@ int main(int argc, char *argv[])
} }
if( usehashtable ) { if( usehashtable ) {
char line[80], hcall[12]; char line[80], hcall[13], hgrid[5];
if( (fhash=fopen(hash_fname,"r+")) ) { if( (fhash=fopen(hash_fname,"r+")) ) {
while (fgets(line, sizeof(line), fhash) != NULL) { while (fgets(line, sizeof(line), fhash) != NULL) {
sscanf(line,"%d %s",&nh,hcall); hgrid[0]='\0';
sscanf(line,"%d %s %s",&nh,hcall,hgrid);
strcpy(hashtab+nh*13,hcall); strcpy(hashtab+nh*13,hcall);
if(strlen(hgrid)>0) strcpy(loctab+nh*5,hgrid);
} }
} else { } else {
fhash=fopen(hash_fname,"w+"); fhash=fopen(hash_fname,"w+");
} }
fclose(fhash); fclose(fhash);
} }
//*************** main loop starts here ***************** //*************** main loop starts here *****************
for (ipass=0; ipass<npasses; ipass++) { for (ipass=0; ipass<npasses; ipass++) {
if(ipass == 0) { if(ipass==1 && ndecodes_pass == 0) ipass=2;
if(ipass < 2) {
nblocksize=1; nblocksize=1;
maxdrift=4; maxdrift=4;
minsync2=0.12; minsync2=0.12;
} }
if(ipass == 1 ) { if(ipass == 2 ) {
if(block_demod == 1) { nblocksize=4; // try 3 blocksizes plus bitbybit normalization
nblocksize=3; // try all blocksizes up to 3 maxdrift=0; // no drift for smaller frequency estimator variance
maxdrift=0; // no drift for smaller frequency estimator variance minsync2=0.10;
minsync2=0.10;
} else { // if called with -B, revert to "classic" wspr params
nblocksize=1;
maxdrift=4;
minsync2=0.12;
}
} }
ndecodes_pass=0; // still needed? ndecodes_pass=0; // still needed?
@ -1023,7 +1044,6 @@ int main(int argc, char *argv[])
* The corresponding threshold is -42.3 dB in 2500 Hz bandwidth for WSPR-15. */ * The corresponding threshold is -42.3 dB in 2500 Hz bandwidth for WSPR-15. */
float min_snr, snr_scaling_factor; float min_snr, snr_scaling_factor;
// min_snr = pow(10.0,-7.0/10.0); //this is min snr in wspr bw
min_snr = pow(10.0,-8.0/10.0); //this is min snr in wspr bw min_snr = pow(10.0,-8.0/10.0); //this is min snr in wspr bw
if( wspr_type == 2 ) { if( wspr_type == 2 ) {
snr_scaling_factor=26.3; snr_scaling_factor=26.3;
@ -1038,37 +1058,36 @@ int main(int argc, char *argv[])
// Find all local maxima in smoothed spectrum. // Find all local maxima in smoothed spectrum.
for (i=0; i<200; i++) { for (i=0; i<200; i++) {
freq0[i]=0.0; candidates[i].freq=0.0;
snr0[i]=0.0; candidates[i].snr=0.0;
drift0[i]=0.0; candidates[i].drift=0.0;
shift0[i]=0; candidates[i].shift=0;
sync0[i]=0.0; candidates[i].sync=0.0;
} }
int npk=0; int npk=0;
unsigned char candidate; unsigned char candidate;
for(j=1; j<410; j++) {
candidate = (smspec[j]>smspec[j-1]) &&
(smspec[j]>smspec[j+1]) &&
(npk<200);
if ( candidate ) {
candidates[npk].freq = (j-205)*df;
candidates[npk].snr = 10*log10(smspec[j])-snr_scaling_factor;
npk++;
}
}
if( more_candidates ) { if( more_candidates ) {
for(j=0; j<411; j=j+2) { for(j=0; j<411; j=j+3) {
candidate = (smspec[j]>min_snr) && (npk<200); candidate = (smspec[j]>min_snr) && (npk<200);
if ( candidate ) { if ( candidate ) {
freq0[npk]=(j-205)*df; candidates[npk].freq = (j-205)*df;
snr0[npk]=10*log10(smspec[j])-snr_scaling_factor; candidates[npk].snr = 10*log10(smspec[j])-snr_scaling_factor;
npk++;
}
}
} else {
for(j=1; j<410; j++) {
candidate = (smspec[j]>smspec[j-1]) &&
(smspec[j]>smspec[j+1]) &&
(npk<200);
if ( candidate ) {
freq0[npk]=(j-205)*df;
snr0[npk]=10*log10(smspec[j])-snr_scaling_factor;
npk++; npk++;
} }
} }
} }
// Compute corrected fmin, fmax, accounting for dial frequency error // Compute corrected fmin, fmax, accounting for dial frequency error
fmin += dialfreq_error; // dialfreq_error is in units of Hz fmin += dialfreq_error; // dialfreq_error is in units of Hz
fmax += dialfreq_error; fmax += dialfreq_error;
@ -1076,32 +1095,28 @@ int main(int argc, char *argv[])
// Don't waste time on signals outside of the range [fmin,fmax]. // Don't waste time on signals outside of the range [fmin,fmax].
i=0; i=0;
for( j=0; j<npk; j++) { for( j=0; j<npk; j++) {
if( freq0[j] >= fmin && freq0[j] <= fmax ) { if( candidates[j].freq >= fmin && candidates[j].freq <= fmax ) {
freq0[i]=freq0[j]; candidates[i]=candidates[j];
snr0[i]=snr0[j];
i++; i++;
} }
} }
npk=i; npk=i;
// bubble sort on snr, bringing freq along for the ride // bubble sort on snr
int pass; int pass;
float tmp; struct cand tmp;
for (pass = 1; pass <= npk - 1; pass++) { for (pass = 1; pass <= npk - 1; pass++) {
for (k = 0; k < npk - pass ; k++) { for (k = 0; k < npk - pass ; k++) {
if (snr0[k] < snr0[k+1]) { if (candidates[k].snr < candidates[k+1].snr) {
tmp = snr0[k]; tmp = candidates[k];
snr0[k] = snr0[k+1]; candidates[k]=candidates[k+1];
snr0[k+1] = tmp; candidates[k+1] = tmp;
tmp = freq0[k];
freq0[k] = freq0[k+1];
freq0[k+1] = tmp;
} }
} }
} }
t0=clock(); t0=clock();
/* Make coarse estimates of shift (DT), freq, and drift /* Make coarse estimates of shift (DT), freq, and drift
* Look for time offsets up to +/- 8 symbols (about +/- 5.4 s) relative * Look for time offsets up to +/- 8 symbols (about +/- 5.4 s) relative
@ -1121,13 +1136,13 @@ int main(int argc, char *argv[])
span of 162 symbols, with deviation equal to 0 at the center of the span of 162 symbols, with deviation equal to 0 at the center of the
signal vector. signal vector.
*/ */
int idrift,ifr,if0,ifd,k0; int idrift,ifr,if0,ifd,k0;
int kindex; int kindex;
float smax,ss,pow,p0,p1,p2,p3; float smax,ss,pow,p0,p1,p2,p3;
for(j=0; j<npk; j++) { //For each candidate... for(j=0; j<npk; j++) { //For each candidate...
smax=-1e30; smax=-1e30;
if0=freq0[j]/df+256; if0=candidates[j].freq/df+256;
for (ifr=if0-2; ifr<=if0+2; ifr++) { //Freq search for (ifr=if0-2; ifr<=if0+2; ifr++) { //Freq search
for( k0=-10; k0<22; k0++) { //Time search for( k0=-10; k0<22; k0++) { //Time search
for (idrift=-maxdrift; idrift<=maxdrift; idrift++) { //Drift search for (idrift=-maxdrift; idrift<=maxdrift; idrift++) { //Drift search
@ -1154,17 +1169,17 @@ int main(int argc, char *argv[])
sync1=ss/pow; sync1=ss/pow;
if( sync1 > smax ) { //Save coarse parameters if( sync1 > smax ) { //Save coarse parameters
smax=sync1; smax=sync1;
shift0[j]=128*(k0+1); candidates[j].shift=128*(k0+1);
drift0[j]=idrift; candidates[j].drift=idrift;
freq0[j]=(ifr-256)*df; candidates[j].freq=(ifr-256)*df;
sync0[j]=sync1; candidates[j].sync=sync1;
} }
} }
} }
} }
} }
tcandidates += (float)(clock()-t0)/CLOCKS_PER_SEC; tcandidates += (float)(clock()-t0)/CLOCKS_PER_SEC;
/* /*
Refine the estimates of freq, shift using sync as a metric. Refine the estimates of freq, shift using sync as a metric.
Sync is calculated such that it is a float taking values in the range Sync is calculated such that it is a float taking values in the range
@ -1182,15 +1197,12 @@ int main(int argc, char *argv[])
could each work on one candidate at a time. could each work on one candidate at a time.
*/ */
for (j=0; j<npk; j++) { for (j=0; j<npk; j++) {
memset(symbols,0,sizeof(char)*nbits*2);
memset(callsign,0,sizeof(char)*13); f1=candidates[j].freq;
memset(call_loc_pow,0,sizeof(char)*23); drift1=candidates[j].drift;
shift1=candidates[j].shift;
f1=freq0[j]; sync1=candidates[j].sync;
drift1=drift0[j];
shift1=shift0[j];
sync1=sync0[j];
// coarse-grid lag and freq search, then if sync>minsync1 continue // coarse-grid lag and freq search, then if sync>minsync1 continue
fstep=0.0; ifmin=0; ifmax=0; fstep=0.0; ifmin=0; ifmax=0;
lagmin=shift1-128; lagmin=shift1-128;
@ -1200,24 +1212,24 @@ int main(int argc, char *argv[])
sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1, sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1,
lagmin, lagmax, lagstep, &drift1, symfac, &sync1, 0); lagmin, lagmax, lagstep, &drift1, symfac, &sync1, 0);
tsync0 += (float)(clock()-t0)/CLOCKS_PER_SEC; tsync0 += (float)(clock()-t0)/CLOCKS_PER_SEC;
fstep=0.25; ifmin=-2; ifmax=2; fstep=0.25; ifmin=-2; ifmax=2;
t0 = clock(); t0 = clock();
sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1, sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1,
lagmin, lagmax, lagstep, &drift1, symfac, &sync1, 1); lagmin, lagmax, lagstep, &drift1, symfac, &sync1, 1);
if(ipass == 0) { if(ipass < 2) {
// refine drift estimate // refine drift estimate
fstep=0.0; ifmin=0; ifmax=0; fstep=0.0; ifmin=0; ifmax=0;
float driftp,driftm,syncp,syncm; float driftp,driftm,syncp,syncm;
driftp=drift1+0.5; driftp=drift1+0.5;
sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1, sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1,
lagmin, lagmax, lagstep, &driftp, symfac, &syncp, 1); lagmin, lagmax, lagstep, &driftp, symfac, &syncp, 1);
driftm=drift1-0.5; driftm=drift1-0.5;
sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1, sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1,
lagmin, lagmax, lagstep, &driftm, symfac, &syncm, 1); lagmin, lagmax, lagstep, &driftm, symfac, &syncm, 1);
if(syncp>sync1) { if(syncp>sync1) {
drift1=driftp; drift1=driftp;
sync1=syncp; sync1=syncp;
@ -1227,80 +1239,118 @@ int main(int argc, char *argv[])
} }
} }
tsync1 += (float)(clock()-t0)/CLOCKS_PER_SEC; tsync1 += (float)(clock()-t0)/CLOCKS_PER_SEC;
// fine-grid lag and freq search // fine-grid lag and freq search
if( sync1 > minsync1 ) { if( sync1 > minsync1 ) {
lagmin=shift1-32; lagmax=shift1+32; lagstep=16; lagmin=shift1-32; lagmax=shift1+32; lagstep=16;
t0 = clock(); t0 = clock();
sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1, sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1,
lagmin, lagmax, lagstep, &drift1, symfac, &sync1, 0); lagmin, lagmax, lagstep, &drift1, symfac, &sync1, 0);
tsync0 += (float)(clock()-t0)/CLOCKS_PER_SEC; tsync0 += (float)(clock()-t0)/CLOCKS_PER_SEC;
// fine search over frequency // fine search over frequency
fstep=0.05; ifmin=-2; ifmax=2; fstep=0.05; ifmin=-2; ifmax=2;
t0 = clock(); t0 = clock();
sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1, sync_and_demodulate(idat, qdat, npoints, symbols, &f1, ifmin, ifmax, fstep, &shift1,
lagmin, lagmax, lagstep, &drift1, symfac, &sync1, 1); lagmin, lagmax, lagstep, &drift1, symfac, &sync1, 1);
tsync1 += (float)(clock()-t0)/CLOCKS_PER_SEC; tsync1 += (float)(clock()-t0)/CLOCKS_PER_SEC;
worth_a_try = 1; candidates[j].freq=f1;
} else { candidates[j].shift=shift1;
worth_a_try = 0; candidates[j].drift=drift1;
candidates[j].sync=sync1;
} }
}
int idt, ii, jittered_shift;
float y,sq,rms; int nwat=0;
int idupe;
for ( j=0; j<npk; j++) {
idupe=0;
for (k=0;k<nwat;k++) {
if( fabsf(candidates[j].freq - candidates[k].freq) < 0.05 &&
abs(candidates[j].shift - candidates[k].shift) < 16 ) {
idupe=1;
break;
}
}
if( idupe == 1 ) {
if(candidates[j].sync > candidates[k].sync) candidates[k]=candidates[j];
} else if ( candidates[j].sync > minsync2 ) {
candidates[nwat]=candidates[j];
nwat++;
}
}
int idt, ii, jittered_shift;
float y,sq,rms;
int ib, blocksize, bitmetric;
int n1,n2,n3,nadd,nu,ntype;
int osd_decode;
for (j=0; j<nwat; j++) {
memset(symbols,0,sizeof(char)*nbits*2);
memset(callsign,0,sizeof(char)*13);
memset(grid,0,sizeof(char)*5);
memset(call_loc_pow,0,sizeof(char)*23);
f1=candidates[j].freq;
shift1=candidates[j].shift;
drift1=candidates[j].drift;
not_decoded=1; not_decoded=1;
int osd_decode=0; osd_decode=0;
int ib=1, blocksize;
int n1,n2,n3,nadd,nu,ntype; ib=1;
while( ib <= nblocksize && not_decoded ) { while( ib <= nblocksize && not_decoded ) {
blocksize=ib; if (ib < 4) { blocksize=ib; bitmetric=0; }
if (ib == 4) { blocksize=1; bitmetric=1; }
idt=0; ii=0; idt=0; ii=0;
while ( worth_a_try && not_decoded && idt<=(128/iifac)) { while ( not_decoded && idt<=(128/iifac)) {
ii=(idt+1)/2; ii=(idt+1)/2;
if( idt%2 == 1 ) ii=-ii; if( idt%2 == 1 ) ii=-ii;
ii=iifac*ii; ii=iifac*ii;
jittered_shift=shift1+ii; jittered_shift=shift1+ii;
nhardmin=0; dmin=0.0;
// Use mode 2 to get soft-decision symbols
// Get soft-decision symbols
t0 = clock(); t0 = clock();
noncoherent_sequence_detection(idat, qdat, npoints, symbols, &f1, noncoherent_sequence_detection(idat, qdat, npoints, symbols, &f1,
&jittered_shift, &drift1, symfac, &blocksize); &jittered_shift, &drift1, symfac, &blocksize, &bitmetric);
tsync2 += (float)(clock()-t0)/CLOCKS_PER_SEC; tsync2 += (float)(clock()-t0)/CLOCKS_PER_SEC;
sq=0.0; sq=0.0;
for(i=0; i<162; i++) { for(i=0; i<162; i++) {
y=(float)symbols[i] - 128.0; y=(float)symbols[i] - 128.0;
sq += y*y; sq += y*y;
} }
rms=sqrt(sq/162.0); rms=sqrt(sq/162.0);
if((sync1 > minsync2) && (rms > minrms)) { if(rms > minrms) {
deinterleave(symbols); deinterleave(symbols);
t0 = clock(); t0 = clock();
if ( stackdecoder ) { if ( stackdecoder ) {
not_decoded = jelinek(&metric, &cycles, decdata, symbols, nbits, not_decoded = jelinek(&metric, &cycles, decdata, symbols, nbits,
stacksize, stack, mettab,maxcycles); stacksize, stack, mettab,maxcycles);
} else { } else {
not_decoded = fano(&metric,&cycles,&maxnp,decdata,symbols,nbits, not_decoded = fano(&metric,&cycles,&maxnp,decdata,symbols,nbits,
mettab,delta,maxcycles); mettab,delta,maxcycles);
} }
tfano += (float)(clock()-t0)/CLOCKS_PER_SEC; tfano += (float)(clock()-t0)/CLOCKS_PER_SEC;
if( (ndepth >= 0) && not_decoded ) { if( (ndepth >= 0) && not_decoded ) {
for(i=0; i<162; i++) { for(i=0; i<162; i++) {
fsymbs[i]=symbols[i]-127; fsymbs[i]=symbols[i]-128.0;
} }
t0 = clock();
osdwspr_(fsymbs,apmask,&ndepth,cw,&nhardmin,&dmin); osdwspr_(fsymbs,apmask,&ndepth,cw,&nhardmin,&dmin);
tosd += (float)(clock()-t0)/CLOCKS_PER_SEC;
for(i=0; i<162; i++) { for(i=0; i<162; i++) {
symbols[i]=255*cw[i]; symbols[i]=255*cw[i];
} }
fano(&metric,&cycles,&maxnp,decdata,symbols,nbits, fano(&metric,&cycles,&maxnp,decdata,symbols,nbits,
mettab,delta,maxcycles); mettab,delta,maxcycles);
for(i=0; i<11; i++) { for(i=0; i<11; i++) {
if( decdata[i]>127 ) { if( decdata[i]>127 ) {
message[i]=decdata[i]-256; message[i]=decdata[i]-256;
@ -1311,33 +1361,42 @@ int main(int argc, char *argv[])
unpack50(message,&n1,&n2); unpack50(message,&n1,&n2);
if( !unpackcall(n1,callsign) ) break; if( !unpackcall(n1,callsign) ) break;
callsign[12]=0; callsign[12]=0;
if( !unpackgrid(n2, grid) ) break;
grid[4]=0;
ntype = (n2&127) - 64; ntype = (n2&127) - 64;
int itype;
if( (ntype >= 0) && (ntype <= 62) ) { if( (ntype >= 0) && (ntype <= 62) ) {
nu = ntype%10; nu = ntype%10;
itype=1;
if( !(nu == 0 || nu == 3 || nu == 7) ) { if( !(nu == 0 || nu == 3 || nu == 7) ) {
nadd=nu; nadd=nu;
if( nu > 3 ) nadd=nu-3; if( nu > 3 ) nadd=nu-3;
if( nu > 7 ) nadd=nu-7; if( nu > 7 ) nadd=nu-7;
n3=n2/128+32768*(nadd-1); n3=n2/128+32768*(nadd-1);
if( !unpackpfx(n3,callsign) ) break; if( !unpackpfx(n3,callsign) ) {
break;
}
itype=2;
} }
ihash=nhash(callsign,strlen(callsign),(uint32_t)146); ihash=nhash(callsign,strlen(callsign),(uint32_t)146);
if(strncmp(hashtab+ihash*13,callsign,13)==0) { if(strncmp(hashtab+ihash*13,callsign,13)==0) {
not_decoded=0; if( (itype==1 && strncmp(loctab+ihash*5,grid,5)==0) ||
osd_decode =1; (itype==2) ) {
break; not_decoded=0;
osd_decode =1;
}
} }
} }
} }
} }
idt++; idt++;
if( quickmode ) break; if( quickmode ) break;
} }
ib++; ib++;
} }
if( worth_a_try && !not_decoded ) { if( !not_decoded ) {
ndecodes_pass++; ndecodes_pass++;
for(i=0; i<11; i++) { for(i=0; i<11; i++) {
@ -1349,26 +1408,25 @@ int main(int argc, char *argv[])
} }
} }
// Unpack the decoded message, update the hashtable, apply // Unpack the decoded message, update the hashtable, apply
// sanity checks on grid and power, and return // sanity checks on grid and power, and return
// call_loc_pow string and also callsign (for de-duping). // call_loc_pow string and also callsign (for de-duping).
noprint=unpk_(message,hashtab,call_loc_pow,callsign); noprint=unpk_(message,hashtab,loctab,call_loc_pow,callsign);
if( subtraction && !noprint ) {
// subtract even on last pass if( get_wspr_channel_symbols(call_loc_pow, hashtab, loctab, channel_symbols) ) {
if( subtraction && (ipass < npasses ) && !noprint ) {
if( get_wspr_channel_symbols(call_loc_pow, hashtab, channel_symbols) ) {
subtract_signal2(idat, qdat, npoints, f1, shift1, drift1, channel_symbols); subtract_signal2(idat, qdat, npoints, f1, shift1, drift1, channel_symbols);
if(!osd_decode) nhardmin=count_hard_errors(symbols,channel_symbols);
} else { } else {
break; break;
} }
} }
// Remove dupes (same callsign and freq within 3 Hz) // Remove dupes (same callsign and freq within 4 Hz)
int dupe=0; int dupe=0;
for (i=0; i<uniques; i++) { for (i=0; i<uniques; i++) {
if(!strcmp(callsign,allcalls[i]) && if(!strcmp(callsign,allcalls[i]) &&
(fabs(f1-allfreqs[i]) <3.0)) dupe=1; (fabs(f1-allfreqs[i]) <4.0)) dupe=1;
} }
if( (verbose || !dupe) && !noprint) { if( (verbose || !dupe) && !noprint) {
strcpy(allcalls[uniques],callsign); strcpy(allcalls[uniques],callsign);
@ -1388,17 +1446,19 @@ int main(int argc, char *argv[])
strcpy(decodes[uniques-1].date,date); strcpy(decodes[uniques-1].date,date);
strcpy(decodes[uniques-1].time,uttime); strcpy(decodes[uniques-1].time,uttime);
decodes[uniques-1].sync=sync1; decodes[uniques-1].sync=candidates[j].sync;
decodes[uniques-1].snr=snr0[j]; decodes[uniques-1].snr=candidates[j].snr;
decodes[uniques-1].dt=dt_print; decodes[uniques-1].dt=dt_print;
decodes[uniques-1].freq=freq_print; decodes[uniques-1].freq=freq_print;
strcpy(decodes[uniques-1].message,call_loc_pow); strcpy(decodes[uniques-1].message,call_loc_pow);
decodes[uniques-1].drift=drift1; decodes[uniques-1].drift=drift1;
decodes[uniques-1].cycles=cycles; decodes[uniques-1].cycles=cycles;
decodes[uniques-1].jitter=ii; decodes[uniques-1].jitter=ii;
decodes[uniques-1].blocksize=blocksize; decodes[uniques-1].blocksize=blocksize+3*bitmetric;
decodes[uniques-1].metric=metric; decodes[uniques-1].metric=metric;
decodes[uniques-1].osd_decode=osd_decode; decodes[uniques-1].nhardmin=nhardmin;
decodes[uniques-1].ipass=ipass;
decodes[uniques-1].decodetype=osd_decode;
} }
} }
} }
@ -1412,7 +1472,7 @@ int main(int argc, char *argv[])
writec2file(c2filename, wsprtype, carrierfreq, idat, qdat); writec2file(c2filename, wsprtype, carrierfreq, idat, qdat);
} }
} }
// sort the result in order of increasing frequency // sort the result in order of increasing frequency
struct result temp; struct result temp;
for (j = 1; j <= uniques - 1; j++) { for (j = 1; j <= uniques - 1; j++) {
@ -1430,11 +1490,12 @@ int main(int argc, char *argv[])
decodes[i].time, decodes[i].snr,decodes[i].dt, decodes[i].freq, decodes[i].time, decodes[i].snr,decodes[i].dt, decodes[i].freq,
(int)decodes[i].drift, decodes[i].message); (int)decodes[i].drift, decodes[i].message);
fprintf(fall_wspr, fprintf(fall_wspr,
"%6s %4s %3d %3.0f %5.2f %11.7f %-22s %2d %5u %4d %4d %4d %2u\n", "%6s %4s %4d %3.0f %5.2f %11.7f %-22s %2d %2d %2d %4d %2d %4d %5u %5d\n",
decodes[i].date, decodes[i].time, (int)(10*decodes[i].sync), decodes[i].date, decodes[i].time, (int)(100*decodes[i].sync),
decodes[i].snr, decodes[i].dt, decodes[i].freq, decodes[i].snr, decodes[i].dt, decodes[i].freq,
decodes[i].message, (int)decodes[i].drift, decodes[i].cycles/81, decodes[i].message, (int)decodes[i].drift, decodes[i].ipass,
decodes[i].jitter,decodes[i].blocksize,decodes[i].metric,decodes[i].osd_decode); decodes[i].blocksize,decodes[i].jitter,decodes[i].decodetype,
decodes[i].nhardmin,decodes[i].cycles/81,decodes[i].metric);
fprintf(fwsprd, fprintf(fwsprd,
"%6s %4s %3d %3.0f %4.1f %10.6f %-22s %2d %5u %4d\n", "%6s %4s %3d %3.0f %4.1f %10.6f %-22s %2d %5u %4d\n",
decodes[i].date, decodes[i].time, (int)(10*decodes[i].sync), decodes[i].date, decodes[i].time, (int)(10*decodes[i].sync),
@ -1452,11 +1513,11 @@ int main(int argc, char *argv[])
fftwf_export_wisdom_to_file(fp_fftwf_wisdom_file); fftwf_export_wisdom_to_file(fp_fftwf_wisdom_file);
fclose(fp_fftwf_wisdom_file); fclose(fp_fftwf_wisdom_file);
} }
ttotal += (float)(clock()-t00)/CLOCKS_PER_SEC; ttotal += (float)(clock()-t00)/CLOCKS_PER_SEC;
fprintf(ftimer,"%7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f\n\n", fprintf(ftimer,"%7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f\n\n",
treadwav,tcandidates,tsync0,tsync1,tsync2,tfano,ttotal); treadwav,tcandidates,tsync0,tsync1,tsync2,tfano,tosd,ttotal);
fprintf(ftimer,"Code segment Seconds Frac\n"); fprintf(ftimer,"Code segment Seconds Frac\n");
fprintf(ftimer,"-----------------------------------\n"); fprintf(ftimer,"-----------------------------------\n");
@ -1467,6 +1528,7 @@ int main(int argc, char *argv[])
fprintf(ftimer,"sync_and_demod(1) %7.2f %7.2f\n",tsync1,tsync1/ttotal); fprintf(ftimer,"sync_and_demod(1) %7.2f %7.2f\n",tsync1,tsync1/ttotal);
fprintf(ftimer,"sync_and_demod(2) %7.2f %7.2f\n",tsync2,tsync2/ttotal); fprintf(ftimer,"sync_and_demod(2) %7.2f %7.2f\n",tsync2,tsync2/ttotal);
fprintf(ftimer,"Stack/Fano decoder %7.2f %7.2f\n",tfano,tfano/ttotal); fprintf(ftimer,"Stack/Fano decoder %7.2f %7.2f\n",tfano,tfano/ttotal);
fprintf(ftimer,"OSD decoder %7.2f %7.2f\n",tosd,tosd/ttotal);
fprintf(ftimer,"-----------------------------------\n"); fprintf(ftimer,"-----------------------------------\n");
fprintf(ftimer,"Total %7.2f %7.2f\n",ttotal,1.0); fprintf(ftimer,"Total %7.2f %7.2f\n",ttotal,1.0);
@ -1482,20 +1544,21 @@ int main(int argc, char *argv[])
fhash=fopen(hash_fname,"w"); fhash=fopen(hash_fname,"w");
for (i=0; i<32768; i++) { for (i=0; i<32768; i++) {
if( strncmp(hashtab+i*13,"\0",1) != 0 ) { if( strncmp(hashtab+i*13,"\0",1) != 0 ) {
fprintf(fhash,"%5d %s\n",i,hashtab+i*13); fprintf(fhash,"%5d %s %s\n",i,hashtab+i*13,loctab+i*5);
} }
} }
fclose(fhash); fclose(fhash);
} }
free(hashtab); free(hashtab);
free(loctab);
free(symbols); free(symbols);
free(decdata); free(decdata);
free(channel_symbols); free(channel_symbols);
free(callsign); free(callsign);
free(call_loc_pow); free(call_loc_pow);
free(idat); free(idat);
free(qdat); free(qdat);
if( stackdecoder ) { if( stackdecoder ) {
free(stack); free(stack);
} }

View File

@ -240,7 +240,7 @@ int floatcomp(const void* elem1, const void* elem2)
return *(const float*)elem1 > *(const float*)elem2; return *(const float*)elem1 > *(const float*)elem2;
} }
int unpk_(signed char *message, char *hashtab, char *call_loc_pow, char *callsign) int unpk_(signed char *message, char *hashtab, char *loctab, char *call_loc_pow, char *callsign)
{ {
int n1,n2,n3,ndbm,ihash,nadd,noprint=0; int n1,n2,n3,ndbm,ihash,nadd,noprint=0;
char grid[5],grid6[7],cdbm[3]; char grid[5],grid6[7],cdbm[3];
@ -279,6 +279,7 @@ int unpk_(signed char *message, char *hashtab, char *call_loc_pow, char *callsig
strncat(call_loc_pow,"\0",1); strncat(call_loc_pow,"\0",1);
ihash=nhash(callsign,strlen(callsign),(uint32_t)146); ihash=nhash(callsign,strlen(callsign),(uint32_t)146);
strcpy(hashtab+ihash*13,callsign); strcpy(hashtab+ihash*13,callsign);
strcpy(loctab+ihash*5,grid);
} else { } else {
nadd=nu; nadd=nu;
if( nu > 3 ) nadd=nu-3; if( nu > 3 ) nadd=nu-3;
@ -312,8 +313,8 @@ int unpk_(signed char *message, char *hashtab, char *call_loc_pow, char *callsig
// not testing 4'th and 5'th chars because of this case: <PA0SKT/2> JO33 40 // not testing 4'th and 5'th chars because of this case: <PA0SKT/2> JO33 40
// grid is only 4 chars even though this is a hashed callsign... // grid is only 4 chars even though this is a hashed callsign...
// isalpha(grid6[4]) && isalpha(grid6[5]) ) ) { // isalpha(grid6[4]) && isalpha(grid6[5]) ) ) {
noprint=1; noprint=1;
} }
ihash=(n2-ntype-64)/128; ihash=(n2-ntype-64)/128;
if( strncmp(hashtab+ihash*13,"\0",1) != 0 ) { if( strncmp(hashtab+ihash*13,"\0",1) != 0 ) {

View File

@ -24,6 +24,6 @@ void deinterleave(unsigned char *sym);
int doublecomp(const void* elem1, const void* elem2); int doublecomp(const void* elem1, const void* elem2);
int floatcomp(const void* elem1, const void* elem2); int floatcomp(const void* elem1, const void* elem2);
int unpk_( signed char *message, char* hashtab, char *call_loc_pow, char *callsign); int unpk_( signed char *message, char* hashtab, char* loctab, char *call_loc_pow, char *callsign);
#endif #endif

View File

@ -128,10 +128,12 @@ int main(int argc, char *argv[])
int i, c, printchannel=0, writec2=0; int i, c, printchannel=0, writec2=0;
float snr=50.0; float snr=50.0;
float f0=0.0, t0=1.0; float f0=0.0, t0=1.0;
char *message, *c2filename, *hashtab; char *message, *c2filename, *hashtab, *loctab;
c2filename=malloc(sizeof(char)*15); c2filename=malloc(sizeof(char)*15);
hashtab=malloc(sizeof(char)*32768*13); hashtab=malloc(sizeof(char)*32768*13);
loctab=malloc(sizeof(char)*32768*5);
memset(hashtab,0,sizeof(char)*32768*13); memset(hashtab,0,sizeof(char)*32768*13);
memset(hashtab,0,sizeof(char)*32768*5);
// message length is 22 characters // message length is 22 characters
message=malloc(sizeof(char)*23); message=malloc(sizeof(char)*23);
@ -169,7 +171,7 @@ int main(int argc, char *argv[])
} }
unsigned char channel_symbols[162]; unsigned char channel_symbols[162];
get_wspr_channel_symbols(message, hashtab, channel_symbols); get_wspr_channel_symbols(message, hashtab, loctab, channel_symbols);
if( printchannel ) { if( printchannel ) {
printf("Channel symbols:\n"); printf("Channel symbols:\n");

View File

@ -162,7 +162,7 @@ void interleave(unsigned char *sym)
} }
} }
int get_wspr_channel_symbols(char* rawmessage, char* hashtab, unsigned char* symbols) { int get_wspr_channel_symbols(char* rawmessage, char* hashtab, char* loctab, unsigned char* symbols) {
int m=0, ntype=0; int m=0, ntype=0;
long unsigned int n=0; long unsigned int n=0;
int i, j, ihash; int i, j, ihash;
@ -292,7 +292,7 @@ int get_wspr_channel_symbols(char* rawmessage, char* hashtab, unsigned char* sym
signed char check_data[11]; signed char check_data[11];
memcpy(check_data,data,sizeof(char)*11); memcpy(check_data,data,sizeof(char)*11);
unpk_(check_data,hashtab,check_call_loc_pow,check_callsign); unpk_(check_data,hashtab,loctab,check_call_loc_pow,check_callsign);
// printf("Will decode as: %s\n",check_call_loc_pow); // printf("Will decode as: %s\n",check_call_loc_pow);
unsigned int nbytes=11; // The message with tail is packed into almost 11 bytes. unsigned int nbytes=11; // The message with tail is packed into almost 11 bytes.

View File

@ -11,6 +11,6 @@
extern int printdata; extern int printdata;
int get_wspr_channel_symbols(char* message, char* hashtab, unsigned char* symbols); int get_wspr_channel_symbols(char* message, char* hashtab, char*loctab, unsigned char* symbols);
#endif #endif

View File

@ -1491,8 +1491,8 @@ void MainWindow::dataSink(qint64 frames)
double f0m1500=m_dialFreqRxWSPR/1000000.0; // + 0.000001*(m_BFO - 1500); double f0m1500=m_dialFreqRxWSPR/1000000.0; // + 0.000001*(m_BFO - 1500);
t2.sprintf(" -f %.6f ",f0m1500); t2.sprintf(" -f %.6f ",f0m1500);
if((m_ndepth&7)==1) depth_string=" -qB "; //2 pass w subtract, no Block detection, no shift jittering if((m_ndepth&7)==1) depth_string=" -qB "; //2 pass w subtract, no Block detection, no shift jittering
if((m_ndepth&7)==2) depth_string=" -B "; //2 pass w subtract, no Block detection if((m_ndepth&7)==2) depth_string=" -C 500 -o 4 "; //3 pass, subtract, Block detection, OSD
if((m_ndepth&7)==3) depth_string=" -C 5000 -o 4"; //2 pass w subtract, Block detection and OSD. if((m_ndepth&7)==3) depth_string=" -C 500 -o 4 -d "; //3 pass, subtract, Block detect, OSD, more candidates
QString degrade; QString degrade;
degrade.sprintf("-d %4.1f ",m_config.degrade()); degrade.sprintf("-d %4.1f ",m_config.degrade());