Increase values of "limit" in decoder.f90.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@3073 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2013-03-23 13:31:33 +00:00
parent 12ffa9696d
commit 9d27abdad0
2 changed files with 4 additions and 4 deletions

View File

@ -28,14 +28,14 @@ subroutine decoder(ss,c0)
newdat=1 newdat=1
nsynced=0 nsynced=0
ndecoded=0 ndecoded=0
limit=200 limit=5000
ccflim=20.0 ccflim=20.0
if(ndepth.ge.2) then if(ndepth.ge.2) then
limit=2000 limit=50000
ccflim=10.0 ccflim=10.0
endif endif
if(ndepth.ge.3) then if(ndepth.ge.3) then
limit=20000 limit=500000
ccflim=8.0 ccflim=8.0
endif endif

View File

@ -1,4 +1,4 @@
//---------------------------------------------------------------- MainWindow //--------------------------------------------------------------- MainWindow
#include "mainwindow.h" #include "mainwindow.h"
#include "ui_mainwindow.h" #include "ui_mainwindow.h"
#include "devsetup.h" #include "devsetup.h"