Delete JT65code; remove extra 160 ms ping from mtdecode; fix "go" script

for Linux.


git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@33 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2005-12-29 15:02:29 +00:00
parent 743e07bd10
commit 9bdd9d7691
4 changed files with 6 additions and 5 deletions

BIN
JT65code

Binary file not shown.

3
go
View File

@ -1 +1,2 @@
g95 -o JT65code JT65code_all.f wrapkarn.o init_rs.o encode_rs.o decode_rs.o
gcc -c wrapkarn.c
g95 -o JT65code -fno-second-underscore JT65code_all.f wrapkarn.o init_rs.o encode_rs.o decode_rs.o

View File

@ -75,9 +75,9 @@ C Remove baseline and one dB for good measure.
call ping(sigdb,nz,dtbuf,slim,wmin,pingdat,nping)
C If this is a "mouse pick", force a psuedo-ping at the center of
C the data.
if(pick) then
C If this is a "mouse pick" and no ping was found, force a pseudo-ping
C at center of data.
if(pick.and.nping.eq.0) then
if(nping.le.99) nping=nping+1
pingdat(1,nping)=0.5*jz*dt
pingdat(2,nping)=0.16

View File

@ -1,4 +1,4 @@
#---------------------------------------------------------- WSJT
# ---------------------------------------------------------- WSJT
from Tkinter import *
from tkFileDialog import *
import Pmw