modified split so tx doesn't change, version number in program title on main window...
authordrowe67 <drowe67@01035d8c-6547-0410-b346-abe4f91aad63>
Thu, 22 Nov 2012 19:39:05 +0000 (19:39 +0000)
committerdrowe67 <drowe67@01035d8c-6547-0410-b346-abe4f91aad63>
Thu, 22 Nov 2012 19:39:05 +0000 (19:39 +0000)
git-svn-id: https://svn.code.sf.net/p/freetel/code@1046 01035d8c-6547-0410-b346-abe4f91aad63

fdmdv2/README.linux
fdmdv2/src/fdmdv2_main.cpp
fdmdv2/src/topFrame.h

index 7c6de68e031facf10c675c588b5b6e4a95d8ff08..08e0e52d2bf339b1382bcc5f5da246ddd4cdeae5 100644 (file)
@@ -108,21 +108,23 @@ TODO
     + level gauge?
 
 [ ] release clean up
-    [ ] remove anything that doesn't work (menus, buttons) from GUI
+    [X] remove anything that doesn't work (menus, buttons) from GUI
+    [X] about
+    [X] src file credits
+    [ ] decide on web site
+        + need edit by at least three of us
     [ ] help about with URL (hyperlink?) to web site
     [ ] if you press start and headphones unplugged (ie one sound card missing), it
         shouldn't crash
     [ ] do we keep/put effort into getting working ./configure && Makefile?
-    [ ] debug printfs
-    [ ] about
-    [ ] src file credits
+    [ ] remove/comment out debug printfs
     [ ] hook up squelch
     [ ] test with simulated AWGN/burst error channels
         + see if sync needs tuning to not fall over too quickly
         + nasty noises
-    [ ] version number
+    [ ] version number on GUI?  How to connect SVN verev to version?
     [ ] buffer sizes, maybe make a config number
-    [ ] read comments and make sure still valid
+    [ ] read comments and make sure they are still valid
     [ ] rig control
     [ ] click tune and split
     [ ] tool tip help for audio config dialog
@@ -130,6 +132,14 @@ TODO
     [ ] something sensible with disabling rx when tx button is pressed?        
     [ ] wire up level guage
         + I think it has relevance for analog speech, demod can handle wide input ranges
+    [ ] data feature
+        + 11 or 00 sync with good inst snr
+        + way to measure inst snr
+        + drag text to "hopper".  Set thresh for sending (time or mic level)
+    [ ] tx/rx muting for half duplex
+        + dont want funny sounds during tx
+    [ ] setup Readme
+    [ ] Donate button with hyperlink from about dialog or help menu?
 
 IDEAS
 =====
index 890a5cee4dd630c91675ab8833f5d47dcffe155b..db379e5946b6ade05c8a67440108567c89660ebd 100644 (file)
@@ -2180,10 +2180,7 @@ void fdmdv2_clickTune(float freq) {
     // 1200Hz, an offset of -300Hz.
 
     if (g_split) {
-        if (g_tx)
-            g_TxFreqOffsetHz = freq - FDMDV_FCENTRE;
-        else
-            g_RxFreqOffsetHz = FDMDV_FCENTRE - freq;
+        g_RxFreqOffsetHz = FDMDV_FCENTRE - freq;
     }
     else {
         g_TxFreqOffsetHz = freq - FDMDV_FCENTRE;
index 2450d958aacbb09ba24caea74af9d9dbe4e891e5..b78070e370e9455ce21ebfca3ad0d3db5e275a5a 100644 (file)
@@ -167,7 +167,7 @@ class TopFrame : public wxFrame
 
         wxAuiNotebook* m_auiNbookCtrl;
 
-        TopFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("FreeDV"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 761,500 ), long style = wxDEFAULT_FRAME_STYLE|wxRESIZE_BORDER|wxTAB_TRAVERSAL );
+        TopFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("FreeDV svn " SVN_REV), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 761,500 ), long style = wxDEFAULT_FRAME_STYLE|wxRESIZE_BORDER|wxTAB_TRAVERSAL );
 
         ~TopFrame();