diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-11-18 12:43:21 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-11-18 12:43:21 -0500 |
commit | 6fda5c31da75bc6d0e38d5a8d25bce1205bc35d8 (patch) | |
tree | e5347b39cac989d12a64b2e621da0f2ec42e6c2c /gui/wxmain.cpp | |
parent | 0fde1b98eee06eda8333ae4099a6731a05a14482 (diff) |
gui: fix buffer size; add differentiator template
Diffstat (limited to 'gui/wxmain.cpp')
-rw-r--r-- | gui/wxmain.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/wxmain.cpp b/gui/wxmain.cpp index 2629701..de2799e 100644 --- a/gui/wxmain.cpp +++ b/gui/wxmain.cpp @@ -239,7 +239,7 @@ static wxString file_header (R"cpp( #include <cstdint> using adcsample_t = uint16_t; -constexpr unsigned int SIZE = 4000; +constexpr unsigned int SIZE = 3000; adcsample_t *process_data(adcsample_t *samples, unsigned int size); @@ -482,7 +482,7 @@ void MainFrame::onRunLogResults(wxCommandEvent& ce) void MainFrame::onRunEditBSize([[maybe_unused]] wxCommandEvent&) { if (m_device != nullptr && m_device->connected()) { - wxTextEntryDialog dialog (this, "Enter new buffer size (100-4000)", "Set Buffer Size"); + wxTextEntryDialog dialog (this, "Enter new buffer size (100-3000)", "Set Buffer Size"); if (dialog.ShowModal() == wxID_OK) { if (wxString value = dialog.GetValue(); !value.IsEmpty()) { if (unsigned long n; value.ToULong(&n)) { |