diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-05-17 20:56:04 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-05-17 20:56:04 +0200 |
commit | 2426dcefc8a2f6b0209a0eeafc8499aa4a7551c3 (patch) | |
tree | 4d149dff99599f6c64b59ef824c54264cbf6a85a /ftnoir_tracker_hatire | |
parent | 3ad5fe51cc5e099d3dc7cf54e29e620f1b5629ce (diff) |
hatire: don't wait for response on all devices, not just win32opentrack-2.3-rc10
Diffstat (limited to 'ftnoir_tracker_hatire')
-rw-r--r-- | ftnoir_tracker_hatire/ftnoir_tracker_hat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftnoir_tracker_hatire/ftnoir_tracker_hat.cpp b/ftnoir_tracker_hatire/ftnoir_tracker_hat.cpp index c3ec6029..5a4e9c74 100644 --- a/ftnoir_tracker_hatire/ftnoir_tracker_hat.cpp +++ b/ftnoir_tracker_hatire/ftnoir_tracker_hat.cpp @@ -185,7 +185,7 @@ void FTNoIR_Tracker::sendcmd(const QByteArray &cmd) { Msg.append(cmd); Msg.append("'\r\n"); } - #ifndef _WIN32 // WaitForReadyRead isn't working well and there are some reports of it being a win32 issue. We can live without it anyway + #if 0 // WaitForReadyRead isn't working well and there are some reports of it being a win32 issue. We can live without it anyway if ( !ComPort->waitForReadyRead(1000)) { emit sendMsgInfo("TimeOut in response to CMD") ; } else { |