aboutsummaryrefslogtreecommitdiffstats
path: root/source/stmdsp/stmdsp.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2022-05-17 11:42:14 -0800
committerClyne Sullivan <clyne@bitgloo.com>2022-05-17 11:42:14 -0800
commit29636cfebf58094d61b669d99c08a4f76dc98a8c (patch)
treea8d8c4399ab01e78284db38797175167b46a6afc /source/stmdsp/stmdsp.cpp
parent67ffe1f2ce9f3432cb524dced5e6fba96519b4fd (diff)
fix serial timeout to prevent incomplete IO
Diffstat (limited to 'source/stmdsp/stmdsp.cpp')
-rw-r--r--source/stmdsp/stmdsp.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/stmdsp/stmdsp.cpp b/source/stmdsp/stmdsp.cpp
index 2252364..c835257 100644
--- a/source/stmdsp/stmdsp.cpp
+++ b/source/stmdsp/stmdsp.cpp
@@ -45,7 +45,9 @@ namespace stmdsp
device::device(const std::string& file)
{
// This could throw!
- m_serial.reset(new serial::Serial(file, 8'000'000, serial::Timeout::simpleTimeout(50)));
+ // Note: Windows needs a not-simple, positive timeout like this to
+ // ensure that reads block.
+ m_serial.reset(new serial::Serial(file, 921'600 /*8'000'000*/, serial::Timeout(1000, 1000, 1, 1000, 1)));
// Test the ID command.
m_serial->flush();