mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-18 22:32:44 +00:00
enabled the proof-of-concept ATV demodulator in nightly builds
This commit is contained in:
@@ -51,8 +51,6 @@ class ATVDecoderModule : public ModuleManager::Instance {
|
||||
|
||||
r2c.init(NULL);
|
||||
|
||||
file = std::ofstream("chromasub_diff.bin", std::ios::binary | std::ios::out);
|
||||
|
||||
agc.start();
|
||||
demod.start();
|
||||
sync.start();
|
||||
@@ -84,8 +82,6 @@ class ATVDecoderModule : public ModuleManager::Instance {
|
||||
|
||||
bool isEnabled() { return enabled; }
|
||||
|
||||
std::ofstream file;
|
||||
|
||||
private:
|
||||
static void menuHandler(void *ctx) {
|
||||
ATVDecoderModule *_this = (ATVDecoderModule *)ctx;
|
||||
@@ -122,10 +118,6 @@ class ATVDecoderModule : public ModuleManager::Instance {
|
||||
style::endDisabled();
|
||||
}
|
||||
|
||||
if (ImGui::Button("Close Debug")) {
|
||||
_this->file.close();
|
||||
}
|
||||
|
||||
ImGui::Text("Gain: %f", _this->gain);
|
||||
ImGui::Text("Offset: %f", _this->offset);
|
||||
ImGui::Text("Subcarrier: %f", _this->subcarrierFreq);
|
||||
|
||||
Reference in New Issue
Block a user