Bugfix + added M17 decoder to the linux CI

This commit is contained in:
AlexandreRouma
2021-10-02 17:01:23 +02:00
parent 26fa23c8f5
commit b4213ea049
86 changed files with 6601 additions and 20 deletions

View File

@ -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)

View File

@ -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_() {