diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-10-17 13:40:59 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-10-17 13:40:59 -0400 |
commit | 829c4b5dcbcb5383b8c1f7a32591cd03e08f6b37 (patch) | |
tree | 33457cb7782e850bbafe396ad8dd144ae0c4d340 /gui | |
parent | 27060ea3c827c33a35c916e05efed63d1ca82b77 (diff) |
Sampling rate done. 96kS/s
Diffstat (limited to 'gui')
-rw-r--r-- | gui/wxmain.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/wxmain.cpp b/gui/wxmain.cpp index 82e6ed5..d4f4878 100644 --- a/gui/wxmain.cpp +++ b/gui/wxmain.cpp @@ -138,6 +138,7 @@ static wxString file_header (R"cpp( #include <cstdint> using adcsample_t = uint16_t; +constexpr unsigned int SIZE = 4000; adcsample_t *process_data(adcsample_t *samples, unsigned int size); |