mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-28 21:37:50 +02:00
Bugfix + added M17 decoder to the linux CI
This commit is contained in:
@ -26,11 +26,7 @@ if (MSVC)
|
||||
target_include_directories(m17_decoder PUBLIC "C:/Users/ryzerth/Documents/Code/codec2/src")
|
||||
target_link_directories(sdrpp_core PUBLIC "C:/Users/ryzerth/Documents/Code/codec2/build/src")
|
||||
|
||||
target_include_directories(m17_decoder PUBLIC "C:/Program Files (x86)/Correct/include")
|
||||
target_link_directories(sdrpp_core PUBLIC "C:/Program Files (x86)/Correct/lib")
|
||||
|
||||
target_link_libraries(m17_decoder PRIVATE libcodec2)
|
||||
target_link_libraries(m17_decoder PRIVATE correct)
|
||||
|
||||
else (MSVC)
|
||||
find_package(PkgConfig)
|
||||
|
@ -222,7 +222,7 @@ private:
|
||||
ImGui::EndTable();
|
||||
}
|
||||
|
||||
if (ImGui::Checkbox(CONCAT("Show Reference Lines##m17_showlines_", _this->name), &_this->showLines)) {
|
||||
if (ImGui::Checkbox(CONCAT("Show Reference TEST Lines##m17_showlines_", _this->name), &_this->showLines)) {
|
||||
if (_this->showLines) {
|
||||
_this->diag.lines.push_back(-0.75f);
|
||||
_this->diag.lines.push_back(-0.25f);
|
||||
@ -290,7 +290,7 @@ private:
|
||||
|
||||
M17LSF lsf;
|
||||
std::mutex lsfMtx;
|
||||
std::chrono::system_clock::time_point lastUpdated;
|
||||
std::chrono::time_point<std::chrono::high_resolution_clock> lastUpdated;
|
||||
};
|
||||
|
||||
MOD_EXPORT void _INIT_() {
|
||||
|
Reference in New Issue
Block a user