From c408cd831b3ba67e81663d496d002d8cbd0363b8 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Sun, 17 Apr 2011 23:42:43 +0200 Subject: [PATCH] add sampling rate dial handler --- software/modules/ModuleDebug.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/software/modules/ModuleDebug.py b/software/modules/ModuleDebug.py index 179ce6f..8a6643c 100644 --- a/software/modules/ModuleDebug.py +++ b/software/modules/ModuleDebug.py @@ -163,7 +163,10 @@ class ModuleDebugWidget(QWidget): # self.dev.setout(3, checked and 1 or 0) print 'out3:', checked and 1 or 0 - + @pyqtSlot(int) + def on_dialInputFreq_valueChanged(self, val): +# TODO: change sampling rate to (val) freq + print 'inputfreq:', val class ModuleDebug():