aboutsummaryrefslogtreecommitdiffstats
path: root/source/stmdsp/stmdsp.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2022-05-22 20:45:34 -0800
committerClyne Sullivan <clyne@bitgloo.com>2022-05-22 20:45:34 -0800
commit93c41469829e339df9732f290dd0941bc91acefb (patch)
treeb1fb1d2859dacb2a3e9e91ccd22cf22715b0fc29 /source/stmdsp/stmdsp.cpp
parent074c596605a9b64ad99f39d6edc37d31bbfb6536 (diff)
parent77ff957e5eb03fb459ea1d56f7bd3b3c3f164699 (diff)
Merge branch 'windows' into devel
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 d7e977b..294e98f 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();