diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-10-02 16:31:08 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-10-02 16:31:08 -0400 |
commit | 2238eac4513412e14f2797b4284f8db8a1377bfc (patch) | |
tree | 3757eadacd98b8caf3e50db5dbad4d743416ae2f /gui/stmdsp.cpp | |
parent | faf9a57e537a182a49610209a4dc038ab75dcaf5 (diff) |
run menu functions work
Diffstat (limited to 'gui/stmdsp.cpp')
-rw-r--r-- | gui/stmdsp.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gui/stmdsp.cpp b/gui/stmdsp.cpp index 2c39f46..bbfc716 100644 --- a/gui/stmdsp.cpp +++ b/gui/stmdsp.cpp @@ -89,4 +89,9 @@ namespace stmdsp m_serial.write(buffer, size); } } + + void device::unload_filter() { + if (connected()) + m_serial.write("E"); + } } |