diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-10-05 13:56:33 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-10-05 13:56:33 -0400 |
commit | 9f480396204e8ccdd89779860cb61d4e4aded8b4 (patch) | |
tree | 511fedbec453936f20e222722249be9ed8ee79d8 /source/stmdsp | |
parent | 1cf4908a23dc5537be0bab1089ffcaa7079d5434 (diff) |
buffered draw samples; increased read rate
Diffstat (limited to 'source/stmdsp')
-rw-r--r-- | source/stmdsp/stmdsp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/stmdsp/stmdsp.cpp b/source/stmdsp/stmdsp.cpp index b3fc8c3..bb417ca 100644 --- a/source/stmdsp/stmdsp.cpp +++ b/source/stmdsp/stmdsp.cpp @@ -27,7 +27,7 @@ namespace stmdsp } device::device(const std::string& file) : - m_serial(file, 1000000/*230400*/, serial::Timeout::simpleTimeout(50)) + m_serial(file, 8'000'000/*230400*/, serial::Timeout::simpleTimeout(50)) { if (m_serial.isOpen()) { m_serial.flush(); |