QSerialPort flush
Locked
General and Desktop
-
Hello, I see the flush method of QSerialPort takes a long time (about 1 ms) before executing the next instruction. Perhaps it pools the event loop. Is there a way to avoid this? I mean to execute the following instructions atomically:
@
port->putChar(ch1);
port->flush();
port->setBaudRate(newbaud);
port->putChar(ch2);
@This is because I need to change the baudrate on-the-fly. Without the flush() instruction both chars are written with the same baudrate (i.e. newbaud is ignored).
Adding the flush() function leads to the correct baudrate of the second char, but it's delayed of 1 ms.Thanks
Mark -
Hi,
Please don't post the same question twice. Closing this one
"Duplicate":http://qt-project.org/forums/viewthread/50971/