From ee274be303987c28fd26e88411378557f1ff566b Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 20 Oct 2020 20:14:08 -0400 Subject: firmware can port to L432KC; gui: edit buffer size --- gui/stmdsp.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'gui/stmdsp.cpp') diff --git a/gui/stmdsp.cpp b/gui/stmdsp.cpp index 87b608d..633c61a 100644 --- a/gui/stmdsp.cpp +++ b/gui/stmdsp.cpp @@ -41,6 +41,17 @@ namespace stmdsp } }*/ + void device::continuous_set_buffer_size(unsigned int size) { + if (connected()) { + uint8_t request[3] = { + 'B', + static_cast(size), + static_cast(size >> 8) + }; + m_serial.write(request, 3); + } + } + void device::continuous_start() { if (connected()) m_serial.write("R"); -- cgit v1.2.3