1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-21 04:16:34 -04:00

Morse Decoder: returm to the original GGMorse library

This commit is contained in:
f4exb 2024-06-01 10:00:10 +02:00
parent 4cf54cb9a5
commit 03bb11b869
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ cd $HOME
mkdir -p external && cd external mkdir -p external && cd external
mkdir -p f4exb && cd f4exb mkdir -p f4exb && cd f4exb
git clone https://github.com/f4exb/ggmorse.git git clone https://github.com/ggerganov/ggmorse.git
cd ggmorse cd ggmorse
mkdir -p build && cd build mkdir -p build && cd build

View File

@ -859,7 +859,7 @@ if(ENABLE_FEATURE_MORSEDECODER)
set(GGMORSE_LIBRARIES "${EXTERNAL_BUILD_LIBRARIES}/lib${LIB_SUFFIX}/libggmorse${CMAKE_SHARED_LIBRARY_SUFFIX}" CACHE INTERNAL "") set(GGMORSE_LIBRARIES "${EXTERNAL_BUILD_LIBRARIES}/lib${LIB_SUFFIX}/libggmorse${CMAKE_SHARED_LIBRARY_SUFFIX}" CACHE INTERNAL "")
endif() endif()
ExternalProject_Add(ggmorse ExternalProject_Add(ggmorse
GIT_REPOSITORY https://github.com/f4exb/ggmorse.git GIT_REPOSITORY https://github.com/ggerganov/ggmorse.git
PREFIX "${EXTERNAL_BUILD_LIBRARIES}/ggmorse" PREFIX "${EXTERNAL_BUILD_LIBRARIES}/ggmorse"
CMAKE_ARGS ${COMMON_CMAKE_ARGS} CMAKE_ARGS ${COMMON_CMAKE_ARGS}
-DGGMORSE_BUILD_TESTS=OFF -DGGMORSE_BUILD_TESTS=OFF

View File

@ -2,7 +2,7 @@
<h2>Introduction</h2> <h2>Introduction</h2>
This feature plugin can be used to decode Morse (CW) transmissions. It is based on a slightly modified decoding library called [GGMorse](https://github.com/f4exb/ggmorse). You must compile and install this library to build this plugin. The GGMorse installation folder is specified as `-DGGMORSE_DIR` on the cmake command line. This feature plugin can be used to decode Morse (CW) transmissions. It is based on a decoding library called [GGMorse](https://github.com/ggerganov/ggmorse.git). You must compile and install this library to build this plugin. The GGMorse installation folder is specified as `-DGGMORSE_DIR` on the cmake command line.
This plugin uses the demodulated audio of some Rx channel plugins. This plugin uses the demodulated audio of some Rx channel plugins.