From f0dbe6fa5ea59ea0fa42c755dbee92df8af0dac3 Mon Sep 17 00:00:00 2001 From: hobbes1069 Date: Mon, 7 Oct 2013 21:15:25 +0000 Subject: [PATCH] Update codec2 svn checkout URL in BuildCodec2.cmake git-svn-id: https://svn.code.sf.net/p/freetel/code@1329 01035d8c-6547-0410-b346-abe4f91aad63 --- fdmdv2/README.cmake | 2 +- fdmdv2/cmake/BuildCodec2.cmake | 2 +- fdmdv2/src/fdmdv2_main.cpp | 4 ---- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/fdmdv2/README.cmake b/fdmdv2/README.cmake index 2848648c..c929ad8c 100644 --- a/fdmdv2/README.cmake +++ b/fdmdv2/README.cmake @@ -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 +$ cmake -DBOOTSTRAP_WXWIDGETS=TRUE $ make (wxWidgets is downloaded and built) $ cmake . diff --git a/fdmdv2/cmake/BuildCodec2.cmake b/fdmdv2/cmake/BuildCodec2.cmake index 5c6378d6..d7ddcf93 100644 --- a/fdmdv2/cmake/BuildCodec2.cmake +++ b/fdmdv2/cmake/BuildCodec2.cmake @@ -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 "" ) diff --git a/fdmdv2/src/fdmdv2_main.cpp b/fdmdv2/src/fdmdv2_main.cpp index 5d7a8de7..7fa833c5 100644 --- a/fdmdv2/src/fdmdv2_main.cpp +++ b/fdmdv2/src/fdmdv2_main.cpp @@ -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); - } } //---------------------------------------------------------------- -- 2.25.1