Commented out all references to EME Echo mode.

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@220 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor 2006-08-01 17:28:50 +00:00
parent 380aa4d889
commit 64cfe4815a

20
wsjt.py
View File

@ -620,9 +620,9 @@ def ModeCW(event=NONE):
erase() erase()
#------------------------------------------------------ ModeEcho #------------------------------------------------------ ModeEcho
def ModeEcho(event=NONE): #def ModeEcho(event=NONE):
# mode.set("Echo") # mode.set("Echo")
stub() # stub()
#------------------------------------------------------ msgpos #------------------------------------------------------ msgpos
def msgpos(): def msgpos():
@ -642,11 +642,10 @@ def about(event=NONE):
Label(about,text=t,font=(font1,16)).pack(padx=20,pady=5) Label(about,text=t,font=(font1,16)).pack(padx=20,pady=5)
t=""" t="""
WSJT is a weak signal communications program. It supports WSJT is a weak signal communications program. It supports
five operating modes: FSK441, a fast mode for meteor scatter; four operating modes: FSK441, a fast mode for meteor scatter;
JT6M, specially optimized for meteor and ionospheric scatter JT6M, specially optimized for meteor and ionospheric scatter
on 50 MHz; JT65, an extremely sensitive mode for troposcatter on 50 MHz; JT65, an extremely sensitive mode for troposcatter
and EME; CW at 15 WPM with messages structured for EME; and and EME; and CW at 15 WPM with messages structured for EME.
an EME Echo mode for measuring your own echoes from the moon.
WSJT is Copyright (c) 2001-2006 by Joseph H. Taylor, Jr., K1JT, WSJT is Copyright (c) 2001-2006 by Joseph H. Taylor, Jr., K1JT,
with contributions from additional authors. It is Open Source with contributions from additional authors. It is Open Source
@ -681,7 +680,6 @@ F8 Set JT65A mode
Shift-F8 Set JT65B mode Shift-F8 Set JT65B mode
CTRL-F8 Set JT65C mode CTRL-F8 Set JT65C mode
Shift-CTRL-F8 Set CW mode Shift-CTRL-F8 Set CW mode
F9 Set EME Echo mode
F10 Toggle focus between WSJT screens F10 Toggle focus between WSJT screens
Alt-1 to Alt-6 Tx1 to Tx6 Alt-1 to Alt-6 Tx1 to Tx6
Alt-A Toggle Auto On/Off Alt-A Toggle Auto On/Off
@ -1333,8 +1331,8 @@ def update():
msg2.configure(bg='#FF00FF') msg2.configure(bg='#FF00FF')
elif mode.get()=="CW": elif mode.get()=="CW":
msg2.configure(bg='#00FF00') msg2.configure(bg='#00FF00')
elif mode.get()=="Echo": # elif mode.get()=="Echo":
msg2.configure(bg='#FF0000') # msg2.configure(bg='#FF0000')
g.mode=mode.get() g.mode=mode.get()
first=0 first=0
@ -1588,8 +1586,8 @@ modemenu.add_radiobutton(label = 'JT65A', variable=mode, command = ModeJT65A)
modemenu.add_radiobutton(label = 'JT65B', variable=mode, command = ModeJT65B) modemenu.add_radiobutton(label = 'JT65B', variable=mode, command = ModeJT65B)
modemenu.add_radiobutton(label = 'JT65C', variable=mode, command = ModeJT65C) modemenu.add_radiobutton(label = 'JT65C', variable=mode, command = ModeJT65C)
modemenu.add_radiobutton(label = 'CW', variable=mode, command = ModeCW) modemenu.add_radiobutton(label = 'CW', variable=mode, command = ModeCW)
modemenu.add_radiobutton(label = 'Echo', variable=mode, command = ModeEcho, #modemenu.add_radiobutton(label = 'Echo', variable=mode, command = ModeEcho,
state=DISABLED) # state=DISABLED)
#------------------------------------------------------ Decode menu #------------------------------------------------------ Decode menu
decodebutton = Menubutton(mbar, text = 'Decode', ) decodebutton = Menubutton(mbar, text = 'Decode', )
@ -1705,7 +1703,7 @@ root.bind_all('<Shift-F8>', ModeJT65B)
root.bind_all('<Control-F8>', ModeJT65C) root.bind_all('<Control-F8>', ModeJT65C)
root.bind_all('<Shift-F7>', ModeJT6M) root.bind_all('<Shift-F7>', ModeJT6M)
root.bind_all('<Shift-Control-F8>', ModeCW) root.bind_all('<Shift-Control-F8>', ModeCW)
root.bind_all('<F9>', ModeEcho) #root.bind_all('<F9>', ModeEcho)
root.bind_all('<F10>', showspecjt) root.bind_all('<F10>', showspecjt)
root.bind_all('<Alt-Key-1>',btx1) root.bind_all('<Alt-Key-1>',btx1)