aboutsummaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-08-25 21:01:08 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-08-25 21:01:08 -0400
commit7077b8d448a847f593402381be5244f86eae75e8 (patch)
treeb4aec8dc916e282c014d352c39c08eb76b8a08c2 /gui
parentdccf7ed52d4d5fc73f5db57c0ccfb4faf8588c16 (diff)
stable signal handling towards 100kHz
Diffstat (limited to 'gui')
-rw-r--r--gui/wxmain.hpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/gui/wxmain.hpp b/gui/wxmain.hpp
index 05faf70..d694734 100644
--- a/gui/wxmain.hpp
+++ b/gui/wxmain.hpp
@@ -100,7 +100,8 @@ public:
auto button = dynamic_cast<wxButton *>(ce.GetEventObject());
if (!m_render_timer->IsRunning()) {
- m_device = new stmdsp::device(m_device_combo->GetStringSelection().ToStdString());
+ if (m_device == nullptr)
+ m_device = new stmdsp::device(m_device_combo->GetStringSelection().ToStdString());
if (m_device->connected()) {
m_device->continuous_start();
m_device_samples_future = std::async(std::launch::async,
@@ -116,8 +117,8 @@ public:
m_device->continuous_stop();
button->SetLabel("Single");
- delete m_device;
- m_device = nullptr;
+ //delete m_device;
+ //m_device = nullptr;
}
}
@@ -129,10 +130,11 @@ public:
if (wxFileInputStream file_stream (/*dialog.GetPath()*/file); file_stream.IsOk()) {
auto size = file_stream.GetSize();
auto buffer = new unsigned char[size];
- auto device = new stmdsp::device(m_device_combo->GetStringSelection().ToStdString());
- if (device->connected()) {
+ if (m_device == nullptr)
+ m_device = new stmdsp::device(m_device_combo->GetStringSelection().ToStdString());
+ if (m_device->connected()) {
file_stream.ReadAll(buffer, size);
- device->upload_filter(buffer, size);
+ m_device->upload_filter(buffer, size);
}
}
}