From 9ffa81e59a60ea49ebfe134fbe79881892f7b777 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Mon, 10 Jan 2022 11:26:03 +0100 Subject: [PATCH] Add tune watchdog (60s) --- widgets/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 05485fd2a..769c3e1e4 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -7035,6 +7035,7 @@ void MainWindow::on_rptSpinBox_valueChanged(int n) void MainWindow::on_tuneButton_clicked (bool checked) { + tuneATU_Timer.start (60000); // tune watchdog (60s) static bool lastChecked = false; if (lastChecked == checked) return; lastChecked = checked;