diff options
| author | Xavier ASUS <xavi92psx@gmail.com> | 2018-11-30 01:37:33 +0100 |
|---|---|---|
| committer | Xavier ASUS <xavi92psx@gmail.com> | 2018-11-30 01:37:33 +0100 |
| commit | e67ae8402090ae7a242a4c2030042b571228bffc (patch) | |
| tree | aeb1c7d0378ea92e78df90e06b7d0a355dfae246 /serial.cpp | |
| parent | 48ce5c59fe7f981d9f2da6ee9ddb9bbf03c8945b (diff) | |
| download | qpsxserial-e67ae8402090ae7a242a4c2030042b571228bffc.tar.gz | |
QApplication::processEvents() would not work under Linux if ACK bytes are to be received from the target device. This has been changed by a call to a blocking function which ensures input data has been received.HEADmaster
Diffstat (limited to 'serial.cpp')
| -rw-r--r-- | serial.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/serial.cpp b/serial.cpp new file mode 100644 index 0000000..78082f7 --- /dev/null +++ b/serial.cpp @@ -0,0 +1,7 @@ +#include "serial.hpp" + +Serial::Serial(QObject *parent) : + QObject(parent) +{ + +} |
