Update codec2 svn checkout URL in BuildCodec2.cmake
authorhobbes1069 <hobbes1069@01035d8c-6547-0410-b346-abe4f91aad63>
Mon, 7 Oct 2013 21:15:25 +0000 (21:15 +0000)
committerhobbes1069 <hobbes1069@01035d8c-6547-0410-b346-abe4f91aad63>
Mon, 7 Oct 2013 21:15:25 +0000 (21:15 +0000)
git-svn-id: https://svn.code.sf.net/p/freetel/code@1329 01035d8c-6547-0410-b346-abe4f91aad63

fdmdv2/README.cmake
fdmdv2/cmake/BuildCodec2.cmake
fdmdv2/src/fdmdv2_main.cpp

index 2848648c1e6bd877a66b9b165559519156d2135e..c929ad8cd2135cecfe27370e8102c4f18eb5a697 100644 (file)
@@ -62,7 +62,7 @@ NOTE: This forces "USE_STATIC_WXWIDGETS" to be true internally regarless of the
 value set manually.
 
 (from any prefered directory outside of the source)
-$ cmake -DBOOTSTRAP_WXWIDGETS=TRUE <path to source>
+$ cmake -DBOOTSTRAP_WXWIDGETS=TRUE <path to fdmdv2 source>
 $ make
 (wxWidgets is downloaded and built)
 $ cmake .
index 5c6378d67b433b31e042535f7ee3f21ad225ff23..d7ddcf936229a87f488234e2dfdccdb1dbc30909 100644 (file)
@@ -1,6 +1,6 @@
 include(ExternalProject)
 ExternalProject_Add(codec2
-   SVN_REPOSITORY https://freetel.svn.sourceforge.net/svnroot/freetel/codec2-dev
+   SVN_REPOSITORY https://svn.code.sf.net/p/freetel/code/codec2-dev
    CMAKE_ARGS -DBUILD_SHARED_LIBS=FALSE 
    INSTALL_COMMAND ""
 )
index 5d7a8de753a955a66a2e302b8710dfffede2b17b..7fa833c53caaba0ec48c2745c007af9fa1550fae 100644 (file)
@@ -3119,19 +3119,15 @@ void MainFrame::SerialPTTRx(void)
     printf("m_boolUseRTS: %d m_boolRTSPos: %d m_boolUseDTR: %d m_boolDTRPos: %d\n",
            wxGetApp().m_boolUseRTS, wxGetApp().m_boolRTSPos, wxGetApp().m_boolUseDTR, wxGetApp().m_boolDTRPos);
 
-    if (wxGetApp().m_boolUseRTS) {
         if(wxGetApp().m_boolRTSPos) // RTS cleared LOW
             m_serialPort->ClrLineState(ctb::LinestateRts);
         else                        // RTS cleared HIGH
             m_serialPort->SetLineState(ctb::LinestateRts);
-    }
 
-    if (wxGetApp().m_boolUseDTR) {
         if(wxGetApp().m_boolDTRPos) // DTR cleared LOW
             m_serialPort->ClrLineState(ctb::LinestateDtr);
         else                        // DTR cleared HIGH
             m_serialPort->SetLineState(ctb::LinestateDtr);
-    }
 }
 
 //----------------------------------------------------------------