aboutsummaryrefslogtreecommitdiffstats
path: root/gui/wxmain.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-08-22 10:31:45 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-08-22 10:31:45 -0400
commitb3eccbc1b9f0194d9f71345113acdc4518b991c1 (patch)
tree67e77c98ac03776e43347f2bd7e9daa5e6510013 /gui/wxmain.hpp
parent989f4038c6d2a3e5bbee04fa25df181810af621e (diff)
working: continuous signal passthrough
Diffstat (limited to 'gui/wxmain.hpp')
-rw-r--r--gui/wxmain.hpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/gui/wxmain.hpp b/gui/wxmain.hpp
index 97baae3..1fc74bd 100644
--- a/gui/wxmain.hpp
+++ b/gui/wxmain.hpp
@@ -78,7 +78,7 @@ public:
void doSingle() {
m_device_samples_future = std::async(std::launch::async,
- [this]() { return m_device->sample(250); });
+ [this]() { return m_device->continuous_read(); });
}
void onSinglePressed(wxCommandEvent& ce) {
@@ -87,8 +87,10 @@ public:
if (!m_render_timer->IsRunning()) {
m_device = new stmdsp::device(m_device_combo->GetStringSelection().ToStdString());
if (m_device->connected()) {
- doSingle();
- m_render_timer->Start(100);
+ m_device->continuous_start();
+ m_device_samples_future = std::async(std::launch::async,
+ []() { return decltype(m_device_samples)(); });
+ m_render_timer->Start(1000);
button->SetLabel("Stop");
} else {
delete m_device;
@@ -96,6 +98,7 @@ public:
}
} else {
m_render_timer->Stop();
+ m_device->continuous_stop();
button->SetLabel("Single");
delete m_device;