Skip to content

Commit 9fe7150

Browse files
committed
disabled pskreporter label/config
1 parent d7700ed commit 9fe7150

File tree

2 files changed

+22
-20
lines changed

2 files changed

+22
-20
lines changed

decoder_modules/ft8_decoder/src/main.cpp

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -918,25 +918,27 @@ class FT8DecoderModule : public ModuleManager::Instance, public FT8ModuleInterfa
918918
ImGui::Text("Error: %s", _this->ft4decoder.decodeError);
919919
ImGui::PopStyleColor();
920920
}
921-
//
922-
// PSK Reporter
923-
//
924-
ImGui::LeftLabel("PSKReporter");
925-
ImGui::BeginDisabled();
926-
if (ImGui::Checkbox(CONCAT("##_enable_psk_reporter_", _this->name), &_this->enablePSKReporter)) {
927-
config.acquire();
928-
config.conf[_this->name]["enablePSKReporter"] = _this->enablePSKReporter;
929-
config.release(true);
930-
}
931-
ImGui::EndDisabled();
932-
ImGui::SameLine();
933-
ImGui::Text("using callsign:");
934-
ImGui::SameLine();
935-
ImGui::FillWidth();
936-
if (sigpath::iqFrontEnd.operatorCallsign == "") {
937-
ImGui::Text("[set up in source menu]");
938-
} else {
939-
ImGui::Text("%s", sigpath::iqFrontEnd.operatorCallsign.c_str());
921+
if (false) {
922+
//
923+
// PSK Reporter not completed yet
924+
//
925+
ImGui::LeftLabel("PSKReporter");
926+
ImGui::BeginDisabled();
927+
if (ImGui::Checkbox(CONCAT("##_enable_psk_reporter_", _this->name), &_this->enablePSKReporter)) {
928+
config.acquire();
929+
config.conf[_this->name]["enablePSKReporter"] = _this->enablePSKReporter;
930+
config.release(true);
931+
}
932+
ImGui::EndDisabled();
933+
ImGui::SameLine();
934+
ImGui::Text("using callsign:");
935+
ImGui::SameLine();
936+
ImGui::FillWidth();
937+
if (sigpath::iqFrontEnd.operatorCallsign == "") {
938+
ImGui::Text("[set up in source menu]");
939+
} else {
940+
ImGui::Text("%s", sigpath::iqFrontEnd.operatorCallsign.c_str());
941+
}
940942
}
941943
ImGui::LeftLabel("ALL.TXT log");
942944
if (ImGui::Checkbox(CONCAT("##_enable_alltxt_", _this->name), &_this->enableAllTXT)) {

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Please see [upstream project page](https://github.com/AlexandreRouma/SDRPlusPlus) for the basic list of its features.
66

7-
Last merge: 2025-02-27
7+
Last merge: 2025-06-11
88

99
Please see [brown fork page](https://sdrpp-brown.san.systems) for list of fork features.
1010

0 commit comments

Comments
 (0)