QSerialPort's read buffer is always empty while running another func.
-
Hi everyone,
I have a problem related QSerial port . I send the back-to-back byte from mcu. Unless I wait a event or run while/for loop, everything is normal. But if I have a loop function, then serialport buffer is always empty and after this function ended, everything is normal running again. While reading data, I use the readAll() function.Reading function : connect(serial, &QSerialPort::readyRead, this, &serial_port::readData);
void serial_port::readData() { int NumberOfBytesToRead = serial->bytesAvailable(); qDebug()<<"NumberOfBytesToRead..."+ QString::number(NumberOfBytesToRead); newdata.append(serial->readAll()); }
And I just tought that maybe it can be related signal and slots. So, I have replaced it with real time system , Qthread. However, the number of bytes is always zero. when it happens the new event of qthread which is 1 milisec during another loop function is running.
-
Hi and welcome to devnet,
Where are you calling these loops ?
Please share your non working code.
-
@Gokhan In these "loops" do you allow events to be processed? If not that is your issue. If you lock up execution in a loop for your event processing thread than it can't handle events which includes serial events.
If you could show us the code we could tell for sure, but that is probably the issue based off your description of the problem.
-
Well, there are two classes in my project, one is GUI class and a form application, other is serial_port class and it makes the opening, closing, receiving, writing etc. about the port, briefly this class provides the communication between PC and MCU through the serial port.
When the Gui application starts, the serial port's threat immediately runs for a millisecond and it calls serial_port :: readData () is in my above message via Qtconcurrent function in run function. So I can read buffer every a millisecond.
By the way, the GUI window has a few button in order to make process with data. For example, one provides for decoding the data which have just received from the port. Other provides for starting the windows console (cmd.exe) and makes something about the application via it. If this event takes a long time (e.g. proc.waitReadyRead function takes a long time sometimes.), then the serial port thread always shows the read buffer to be empty. However, the thread normally continues the running for a millisecond. (I use the clicked event for these buttons.)
-
@Gokhan I don't see anything in what you said that let me figure out what's going on. You'll have to share the relevant parts of your code in order for us to help you more I think.
Also, side note on threading.. Running a thread every 1ms is too aggressive imo. Most schedulers can't even swap threads out that fast. So your thread is basically at 100% run time. If you actually want to let the CPU rest for that thread you need to lower that time. I find I never go below 100ms for thread sleeps as that tends to be near the edge of context switching by most CPUs.
The other potential of a 1ms sleep is that you are actually getting much more than 1ms. Again this is because the thread context swaps can't happen that fast.
That method of threading is called polling and it isn't a good way to do things in the modern world. Qt provides signals for when there is data to be read from the QIODevice. If you handle this signal, you don't even need a timeout to kickoff the thread.
-
@ambershark Many thanks for your reply.
I can't share all codes because they are at office's PC. I'm wondering a thing what you said about the signal method. If I also don't use thread method to read the buffer, can I all read the data only a signal method without missing?In addition to, e.g I'm using the console (cmd.exe) in order to move folder is huge size. After I started cmd code to move it somewhere, it immediately has the finished event. However, I want it to give me an event after it finished the data transfer. So, I can use any signals method to do it? e.g can readyReadStandardOutput() be? I guess that if I can use this method, it will be the good way to do this like you have mentioned above. Isn't it?
-
Can you show the code you use for that ?
-
I have just checked for a new application and have the same problem. e.g. I'm using an external cmd.exe file to convert the images to bytes. I start the first conversion via a button.
void image_down_dialog::on_convertButton_clicked() { QStringList arguments; QString com=QString("/k img_cvt -i %1 -f 0").arg(img_down[0].image_with_ext); arguments <<com; QDir::setCurrent("D://conv"); QProcess aa ; aa.start("cmd.exe",arguments); proc = &aa; connect(proc, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(finishProcess(int, QProcess::ExitStatus)) ); }
void image_down_dialog::finishProcess ( int exitCode, QProcess::ExitStatus exitStatus ) { QString com=QString("/k img_cvt -i %1 -f 0").arg(img_down[idxProcess].image_with_ext); arguments <<com; QDir dir; dir.setCurrent("D:/conv"); QProcess proc; proc.start("cmd.exe",arguments); connect(&proc, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(finishProcess(int, QProcess::ExitStatus)) ); //I write proc.waitForFinished(100) to here .. }
After I start the conversion, the process immediately gives me the finished event. Actually, it's still running, not finished. However, if I use "proc.waitForFinished(100);" in the finished event, then it normally completes them. I have to give 100 milliseconds to wait for finished otherwise, it can't finish again.
-
mmh maybe an error occurred during exe? that would probably result in a finished Signal.
What does qDebug() say, if you write something like this?
QString com=QString("/k img_cvt -i %1 -f 0").arg(img_down[idxProcess].image_with_ext); arguments <<com; QDir dir; dir.setCurrent("D:/conv"); QProcess proc; connect(&proc, & QProcess::errorOccurred, &proc,[=](QProcess::ProcessError error){qDebug() <<"Process had an error:" << error; }); connect(&proc, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(finishProcess(int, QProcess::ExitStatus)) ); proc.start("cmd.exe",arguments);
-
In both your methods, your QProcess objects are local on the stack. They'll be destroyed at the end of the methods and will likely not have finished at that point.
Also, you argument list doesn't look right, you are trying to put everything on one line. You should put each element separately in the QStringList object.
-
@J-Hilk Yes. it gives the "Crashed" error and "Destroyed while process ("cmd.exe") is still running." What can I do to solve this?
@SGaist I know they are a local variable, I can't use a global variable. I tried to use a global variable instead of them, this time it never gave the finished event. I guess I didn't completely connect this signal. Also, this argument list is running like I want, if I write the waiting function... -
There's no need for global variables. Since you'll be using these commands several times, just keep them as member variables and setup them once in your dialog constructor.
Then you can re-use them as needed.
-
@Gokhan said in QSerialPort's read buffer is always empty while running another func.:
@J-Hilk Yes. it gives the "Crashed" error and "Destroyed while process ("cmd.exe") is still running." What can I do to solve this?
@SGaist I know they are a local variable, I can't use a global variable. I tried to use a global variable instead of them, this time it never gave the finished event. I guess I didn't completely connect this signal. Also, this argument list is running like I want, if I write the waiting function...Actually, that are to be expected error messages, for reasons, @SGaist explained!
QProgress does not have to be global to work e.g:
QString com=QString("/k img_cvt -i %1 -f 0").arg(img_down[idxProcess].image_with_ext); arguments <<com; QDir dir; dir.setCurrent("D:/conv"); QProcess *proc = new QProcess(); connect(proc, & QProcess::errorOccurred, proc,[=](QProcess::ProcessError error){qDebug() <<"Process had an error:" << error; }); connect(proc, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(finishProcess(int, QProcess::ExitStatus)) ); connect(proc, SIGNAL(finished(int, QProcess::ExitStatus)), proc, SLOT(deleteLater())); proc->start("cmd.exe",arguments);
-
@SGaist and @J-Hilk many thank your reply.
I'm using the proc variable as a member variable that is decelerated and initialized in class. "QProcess *proc = new QProcess();" like you said. However, it never gave the finish event. Why don't I get any event?
And when I re-click the button, it gives an error that is "QProcess::start: Process is already running",void image_down_dialog::on_convertButton_clicked() { idxProcess = 0; find_all_imgs(); QStringList arguments; QString com=QString("/k img_cvt -i %1 -f 0").arg(img_down[0].image_with_ext); arguments <<com; QDir::setCurrent("D:/User Interface/GUI_660_HMI/conv"); connect(proc, & QProcess::errorOccurred, proc,[=](QProcess::ProcessError error){qDebug() <<"Process had an error:" << error; }); connect(proc, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(finishProcess(int, QProcess::ExitStatus)) ); connect(proc, SIGNAL(finished(int, QProcess::ExitStatus)), proc, SLOT(deleteLater())); proc->start("cmd.exe",arguments); }
-
@Gokhan
ok first, if you make QProcess a member variable, move the connects into the constructor:QProcess *proc = new QProcess(); connect(proc, & QProcess::errorOccurred, proc,[=](QProcess::ProcessError error){qDebug() <<"Process had an error:" << error; }); connect(proc, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(finishProcess(int, QProcess::ExitStatus)) );
or you get problems when you press the button more than once.
also the deleteLater has to be moved to the destructor or you can use your QProcess object only once.
~MyClass(){ proc->deleteLater(); }
Why don't I get any event?
And when I re-click the button, it gives an error that is "QProcess::start: Process is already running",it would seem your process is still running right?
-
-
@jsulm "/k img_cvt -i %1 -f 0" this is a one line command, so it has to write in one line. While I was also manually using this cmd application before, using it the same. Also, it successfully completes the conversion and creates a new folder within hex code. However, it never gives the finished information, it is continuous running to finish. I can see it's still running when re-click the button.