diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-10-16 12:16:53 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-10-16 12:16:53 -0400 |
commit | 27060ea3c827c33a35c916e05efed63d1ca82b77 (patch) | |
tree | e98d364e28cbec0553e7728e9ff65f927bf68abf /gui/wxmain.hpp | |
parent | 2238eac4513412e14f2797b4284f8db8a1377bfc (diff) |
fixed sample rate issues; up to 88kS/s
Diffstat (limited to 'gui/wxmain.hpp')
-rw-r--r-- | gui/wxmain.hpp | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/gui/wxmain.hpp b/gui/wxmain.hpp index 4a8914d..b8ff11d 100644 --- a/gui/wxmain.hpp +++ b/gui/wxmain.hpp @@ -20,9 +20,6 @@ class MainFrame : public wxFrame { public: MainFrame(); - - void onPaint(wxPaintEvent& pe); - void onRenderTimer(wxTimerEvent& te); void onFileNew(wxCommandEvent&); void onFileOpen(wxCommandEvent&); @@ -36,22 +33,19 @@ public: void onRunUpload(wxCommandEvent&); void onRunUnload(wxCommandEvent&); - void requestSamples(); - void updateDrawing(); + void onMeasureTimer(wxTimerEvent& te); private: - bool m_is_rendering = false; - wxTimer *m_render_timer = nullptr; + bool m_is_running = false; wxComboBox *m_device_combo = nullptr; wxStyledTextCtrl *m_text_editor = nullptr; wxControl *m_signal_area = nullptr; wxMenuItem *m_run_measure = nullptr; - wxMenuItem *m_run_measure_value = nullptr; + wxTimer *m_measure_timer = nullptr; + wxStatusBar *m_status_bar = nullptr; wxString m_open_file_path; stmdsp::device *m_device = nullptr; - std::future<std::vector<stmdsp::adcsample_t>> m_device_samples_future; - std::vector<stmdsp::adcsample_t> m_device_samples; bool tryDevice(); void prepareEditor(); |