Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. QSerialPort::waitForReadyRead exits with timeout
Forum Updated to NodeBB v4.3 + New Features

QSerialPort::waitForReadyRead exits with timeout

Scheduled Pinned Locked Moved Solved General and Desktop
27 Posts 6 Posters 5.7k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • jsulmJ jsulm

    @Bengt-0 said in QSerialPort::waitForReadyRead exits with timeout:

    the result pickup is reached before the readyRead event triggers ReadPort and I get nothing

    I highly doubt that. It is actually other way around: arriving data triggers readyRead signal. How do you know that there is nothing in ready read?
    Are you using Buffer which is filled in PortRead in this line:

    if(!lock) strcpy_s(str,112,Buffer);
    

    ?
    If so then that is the problem. You only can use Buffer when it was filled (AFTER executing PortRead), not already after sending the data!

    B Offline
    B Offline
    Bengt 0
    wrote on last edited by
    #4

    @jsulm

    Sorry, I do not understand your comment.
    This is exactly what I am trying to do, read the Buffer AFTER the ReadPort is completed, not before. I assumed waitForReadyRead would release after the readyRead signal is emitted and ReadPort was completed, setting "lock=false", allowing me to safely copy the Buffer content.

    Without waitForReadyRead, "lock" is still "true" since ReadPort is not yet executed and I cannot copy the received data.

    As I was trying to say, even a small delay makes it work, such as a timeout from waitForReadyRead(10), but it is only a delay, not a message of success. This indicates to me that something is not working as it should.

    1 Reply Last reply
    0
    • J.HilkJ J.Hilk

      @Bengt-0 there's a reason, you're not supposed to mix synchronous and a synchronous api.

      waitForReadyRead is blocking and depending on implementation, your readyRead signal can get lost.

      Please stick with the the signals.

      B Offline
      B Offline
      Bengt 0
      wrote on last edited by
      #5

      @J-Hilk

      Thanks for this.

      I have a timer which is sending requests every 250ms.

      Previously I have used synchronous Write and Read without signals, but this is not safe and I am sometimes missing data. Async seems to be much more stable, if the timing can be handled.

      Could you please suggest an outline how to use asynchronous requests to the HW box with a timer?

      I am not an experienced programmer, but I am trying to get by.:)

      J.HilkJ 1 Reply Last reply
      0
      • B Bengt 0

        @J-Hilk

        Thanks for this.

        I have a timer which is sending requests every 250ms.

        Previously I have used synchronous Write and Read without signals, but this is not safe and I am sometimes missing data. Async seems to be much more stable, if the timing can be handled.

        Could you please suggest an outline how to use asynchronous requests to the HW box with a timer?

        I am not an experienced programmer, but I am trying to get by.:)

        J.HilkJ Offline
        J.HilkJ Offline
        J.Hilk
        Moderators
        wrote on last edited by J.Hilk
        #6

        @Bengt-0

        #include <QCoreApplication>
        
        #include <QSerialPort>
        #include <QDebug>
        
        QSerialPort serial;
        int sendIndex(-1);
        
        static const QVector<QByteArray> toSend{
            {"Command1"},
            {"Command2"},
            {"Command3"},
        };
        
        void writeNextCommand(){
            sendIndex++;
            if(sendIndex < toSend.size()){
                serial.write(toSend.at(sendIndex));
            } else {
                qDebug() << "All Send";
            }
        }
        
        QByteArray receivedData;
        void onReadyRead(){
            receivedData += serial.readAll();
        
            //Your own logic, that ba is complete and correct
        
            //--
            qDebug() << "onReadyRead: new bytes:" << receivedData.toHex(' ');
        
            //if(dataOK(receivedData))
            writeNextCommand();
        }
        
        qint64 bytesWrittenSoFar(0);
        void onBytesWritten(qint64 bytesWritten){
            bytesWrittenSoFar += bytesWritten;
            if( bytesWrittenSoFar == toSend.at(sendIndex).size()){
                qDebug() << QString("All bytes (%1) of the command send, expecting now answer").arg(bytesWrittenSoFar);
                bytesWrittenSoFar = 0;
            }else
                qDebug() << bytesWrittenSoFar << " of" << toSend.at(sendIndex).size();
        }
        
        int main(int argc, char *argv[])
        {
            QCoreApplication a(argc, argv);
            //Setup Port
        
            QObject::connect(&serial, &QSerialPort::bytesWritten,&onBytesWritten);
            QObject::connect(&serial, &QSerialPort::readyRead, &onReadyRead);
        
            serial.setPortName("PortX");
           /*
            serial.setParity();
            serial.setBaudRate();
            serial.setDataBits();
            serial.setStopBits();
            serial.setFlowControl();
            */
            if(serial.open(QIODevice::ReadWrite)){
                writeNextCommand();
            } else {
                qDebug() << "Could not open Serialport";
            }
        
            return a.exec();
        }
        

        Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


        Q: What's that?
        A: It's blue light.
        Q: What does it do?
        A: It turns blue.

        1 Reply Last reply
        3
        • B Offline
          B Offline
          Bengt 0
          wrote on last edited by
          #7

          @J-Hilk said in QSerialPort::waitForReadyRead exits with timeout:

          Thanks a lot, I will study it.

          #include <QCoreApplication>

          #include <QSerialPort>
          #include <QDebug>

          QSerialPort serial;
          int sendIndex(-1);

          static const QVector<QByteArray> toSend{
          {"Command1"},
          {"Command2"},
          {"Command3"},
          };

          void writeNextCommand(){
          sendIndex++;
          if(sendIndex < toSend.size()){
          serial.write(toSend.at(sendIndex));
          } else {
          qDebug() << "All Send";
          }
          }

          void onReadyRead(){
          QByteArray ba = serial.readAll();

          //Your own logic, that ba is complete and correct
          
          //--
          qDebug() << "onReadyRead: new bytes:" << ba.toHex(' ');
          
          writeNextCommand();
          

          }

          void onBytesWritten(qint64 bytesWritten){
          if( bytesWritten == toSend.at(sendIndex).size())
          qDebug() << "All bytes of the command send, expecting now answer";
          else
          qDebug() << bytesWritten << " of" << toSend.at(sendIndex).size();
          }

          int main(int argc, char *argv[])
          {
          QCoreApplication a(argc, argv);
          //Setup Port

          serial.setPortName("PortX");
          
          QObject::connect(&serial, &QSerialPort::bytesWritten,&onBytesWritten);
          QObject::connect(&serial, &QSerialPort::readyRead, &onReadyRead);
          

          /*
          serial.setParity();
          serial.setBaudRate();
          serial.setDataBits();
          serial.setStopBits();
          serial.setFlowControl();
          */
          if(serial.open(QIODevice::ReadWrite)){
          writeNextCommand();
          } else {
          qDebug() << "Could not open Serialport";
          }

          return a.exec();
          

          }

          1 Reply Last reply
          0
          • B Offline
            B Offline
            Bengt 0
            wrote on last edited by
            #8

            An observation: if I do NOT connect the readyRead signal to my PortRead, waitForReadyRead() works correctly and does not timeout. But then of course PortRead is never executed...
            Interesting.

            B 1 Reply Last reply
            0
            • B Bengt 0

              An observation: if I do NOT connect the readyRead signal to my PortRead, waitForReadyRead() works correctly and does not timeout. But then of course PortRead is never executed...
              Interesting.

              B Offline
              B Offline
              Bengt 0
              wrote on last edited by
              #9

              @Bengt-0
              Even more interesting;
              If I remove the ReadLine() from the connected PortRead slot, waitForReadyRead exits normally without timeout. Seems there is some kind of a race here.

              KroMignonK 1 Reply Last reply
              0
              • B Bengt 0

                @Bengt-0
                Even more interesting;
                If I remove the ReadLine() from the connected PortRead slot, waitForReadyRead exits normally without timeout. Seems there is some kind of a race here.

                KroMignonK Offline
                KroMignonK Offline
                KroMignon
                wrote on last edited by
                #10

                @Bengt-0 said in QSerialPort::waitForReadyRead exits with timeout:

                Even more interesting;
                If I remove the ReadLine() from the connected PortRead slot, waitForReadyRead exits normally without timeout. Seems there is some kind of a race here.

                Do you have read QSerialPort documentation?
                This is what @J-Hilk warn you about, in his first post: do not mix synchronous (waitForReadyRead() / waitForBytesWritten()) and asynchronous (readyRead() / bytesWritten()) modes

                It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

                B 3 Replies Last reply
                3
                • KroMignonK KroMignon

                  @Bengt-0 said in QSerialPort::waitForReadyRead exits with timeout:

                  Even more interesting;
                  If I remove the ReadLine() from the connected PortRead slot, waitForReadyRead exits normally without timeout. Seems there is some kind of a race here.

                  Do you have read QSerialPort documentation?
                  This is what @J-Hilk warn you about, in his first post: do not mix synchronous (waitForReadyRead() / waitForBytesWritten()) and asynchronous (readyRead() / bytesWritten()) modes

                  B Offline
                  B Offline
                  Bengt 0
                  wrote on last edited by
                  #11

                  @KroMignon
                  Yes, I have read the QSerialPort documentation, at length.
                  Please point out exactly to the text section you refer to, I would be most grateful. Reading is not the same as understanding, unfortunately.

                  1 Reply Last reply
                  0
                  • KroMignonK KroMignon

                    @Bengt-0 said in QSerialPort::waitForReadyRead exits with timeout:

                    Even more interesting;
                    If I remove the ReadLine() from the connected PortRead slot, waitForReadyRead exits normally without timeout. Seems there is some kind of a race here.

                    Do you have read QSerialPort documentation?
                    This is what @J-Hilk warn you about, in his first post: do not mix synchronous (waitForReadyRead() / waitForBytesWritten()) and asynchronous (readyRead() / bytesWritten()) modes

                    B Offline
                    B Offline
                    Bengt 0
                    wrote on last edited by
                    #12

                    @KroMignon

                    I realise now that my source of information was Assistant only, not your link to QSerialPort docs.
                    Assistant is convenient but much less complete.
                    I stand corrected and hope to solve it now.

                    1 Reply Last reply
                    0
                    • KroMignonK KroMignon

                      @Bengt-0 said in QSerialPort::waitForReadyRead exits with timeout:

                      Even more interesting;
                      If I remove the ReadLine() from the connected PortRead slot, waitForReadyRead exits normally without timeout. Seems there is some kind of a race here.

                      Do you have read QSerialPort documentation?
                      This is what @J-Hilk warn you about, in his first post: do not mix synchronous (waitForReadyRead() / waitForBytesWritten()) and asynchronous (readyRead() / bytesWritten()) modes

                      B Offline
                      B Offline
                      Bengt 0
                      wrote on last edited by
                      #13

                      @KroMignon
                      I tried to use the blocking code example on the documentation page exactly, and I got a timeout of 30 seconds as expected, since it is breaking only when bytes==0 and waitFRR==false. This was a surprise since the text indicates that waitFRR==false only in a broken connection or an error, which should be an exceptional case. Or do I misunderstand the text?

                      In my application, this code works only if I set the timeout value to a reasonable value other than the default 30 seconds. It seems I really need a waitFRR=false to be sure there is no more data in the pipe. If not, I do not always get the last data, this is tested and confirmed.
                      Unfortunately, I need to turn off my error check in this procedure, since waitFRR=false gives error() = 12.
                      Is there a better solution to make sure I do not miss data?

                          for(;;) {
                              numread = read(buf,128);
                              numreadTotal +=numread;
                              if(numread) strcat(Buffer,buf);
                              if(numread == 0 && !waitForReadyRead(10)) break;
                          }
                          strcpy(str,Buffer);
                      
                      KroMignonK JonBJ 2 Replies Last reply
                      0
                      • B Bengt 0

                        @KroMignon
                        I tried to use the blocking code example on the documentation page exactly, and I got a timeout of 30 seconds as expected, since it is breaking only when bytes==0 and waitFRR==false. This was a surprise since the text indicates that waitFRR==false only in a broken connection or an error, which should be an exceptional case. Or do I misunderstand the text?

                        In my application, this code works only if I set the timeout value to a reasonable value other than the default 30 seconds. It seems I really need a waitFRR=false to be sure there is no more data in the pipe. If not, I do not always get the last data, this is tested and confirmed.
                        Unfortunately, I need to turn off my error check in this procedure, since waitFRR=false gives error() = 12.
                        Is there a better solution to make sure I do not miss data?

                            for(;;) {
                                numread = read(buf,128);
                                numreadTotal +=numread;
                                if(numread) strcat(Buffer,buf);
                                if(numread == 0 && !waitForReadyRead(10)) break;
                            }
                            strcpy(str,Buffer);
                        
                        KroMignonK Offline
                        KroMignonK Offline
                        KroMignon
                        wrote on last edited by KroMignon
                        #14

                        @Bengt-0 said in QSerialPort::waitForReadyRead exits with timeout:

                        Is there a better solution to make sure I do not miss data?

                        If you want to work in polling mode, I would do it like this:

                        QElapsedTimer tmr; // to exit when too long
                        
                        tmr.start();
                        QByteArray reply;
                        // I suppose you are waiting to have 128 bytes?
                        while(!tmr.hasExpired(30000) && reply.length() < 128)
                        {
                            serial.waitForReadyRead(100);
                            while(serial.bytesAvailable())
                            {
                                 reply.append(serial.readall());
                            }
                        }
                        
                        

                        It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

                        B 1 Reply Last reply
                        0
                        • B Bengt 0

                          @KroMignon
                          I tried to use the blocking code example on the documentation page exactly, and I got a timeout of 30 seconds as expected, since it is breaking only when bytes==0 and waitFRR==false. This was a surprise since the text indicates that waitFRR==false only in a broken connection or an error, which should be an exceptional case. Or do I misunderstand the text?

                          In my application, this code works only if I set the timeout value to a reasonable value other than the default 30 seconds. It seems I really need a waitFRR=false to be sure there is no more data in the pipe. If not, I do not always get the last data, this is tested and confirmed.
                          Unfortunately, I need to turn off my error check in this procedure, since waitFRR=false gives error() = 12.
                          Is there a better solution to make sure I do not miss data?

                              for(;;) {
                                  numread = read(buf,128);
                                  numreadTotal +=numread;
                                  if(numread) strcat(Buffer,buf);
                                  if(numread == 0 && !waitForReadyRead(10)) break;
                              }
                              strcpy(str,Buffer);
                          
                          JonBJ Offline
                          JonBJ Offline
                          JonB
                          wrote on last edited by
                          #15

                          @Bengt-0
                          You may or may not thank me for these observations.

                          • As others have said, if we were you we just would not use the blocking waitForReadyRead(), we would use the signals/slots instead. Period. [EDIT: Though I see @KroMignon has just posted something using the blocking call, leave it to you.]

                          • if(numread) strcat(Buffer,buf);: Probably not related to your issue, but I just wouldn't use this. You are making assumptions of what data will be in buf after read(buf,128) which do not seem to be warranted. This line can potentially put rubbish into your Buffer, or even crash.

                          B 1 Reply Last reply
                          1
                          • JonBJ JonB

                            @Bengt-0
                            You may or may not thank me for these observations.

                            • As others have said, if we were you we just would not use the blocking waitForReadyRead(), we would use the signals/slots instead. Period. [EDIT: Though I see @KroMignon has just posted something using the blocking call, leave it to you.]

                            • if(numread) strcat(Buffer,buf);: Probably not related to your issue, but I just wouldn't use this. You are making assumptions of what data will be in buf after read(buf,128) which do not seem to be warranted. This line can potentially put rubbish into your Buffer, or even crash.

                            B Offline
                            B Offline
                            Bengt 0
                            wrote on last edited by
                            #16

                            @JonB
                            That you for your suggestions.
                            I will try to get the polling version working first, then I will work on the signal/slot version.
                            However, I obviously lack in-depth understanding of the subject of signals and slots in this case.
                            My application is based on a timer that sends requests to my HW box periodically every 250ms.
                            I assume this can be regarded as a blocking mode operation.
                            If I receive the answer from my HW box by the readyRead signal, can this be regarded as "mixing blocking and non-blocking mode" which is not advisable or recommended?

                            About the last remark on buffer content, it is of course true.
                            However, I trust my HW box, and the things that could happen at worst would be: empty, one CR-terminated string data package (which is the correct scenario), or two or more CR-terminated string data packages. I should at least check for overflow, agreed.

                            1 Reply Last reply
                            0
                            • KroMignonK KroMignon

                              @Bengt-0 said in QSerialPort::waitForReadyRead exits with timeout:

                              Is there a better solution to make sure I do not miss data?

                              If you want to work in polling mode, I would do it like this:

                              QElapsedTimer tmr; // to exit when too long
                              
                              tmr.start();
                              QByteArray reply;
                              // I suppose you are waiting to have 128 bytes?
                              while(!tmr.hasExpired(30000) && reply.length() < 128)
                              {
                                  serial.waitForReadyRead(100);
                                  while(serial.bytesAvailable())
                                  {
                                       reply.append(serial.readall());
                                  }
                              }
                              
                              
                              B Offline
                              B Offline
                              Bengt 0
                              wrote on last edited by
                              #17

                              @KroMignon

                              for the moment, this solution seems to be working:

                                  for(;;) {
                                      numread = read(buf,128);
                                      numreadTotal +=numread;
                                      if(numread) strcat(Buffer,buf);
                                      if(numread == 0 && !waitForReadyRead(10)) break;
                                      if(atEnd()) break;
                                  }
                                  strcpy(str,Buffer);
                              

                              No timeout with error() = 12.
                              I will try your suggestion, it is simpler.

                              J.HilkJ KroMignonK 2 Replies Last reply
                              0
                              • B Bengt 0

                                @KroMignon

                                for the moment, this solution seems to be working:

                                    for(;;) {
                                        numread = read(buf,128);
                                        numreadTotal +=numread;
                                        if(numread) strcat(Buffer,buf);
                                        if(numread == 0 && !waitForReadyRead(10)) break;
                                        if(atEnd()) break;
                                    }
                                    strcpy(str,Buffer);
                                

                                No timeout with error() = 12.
                                I will try your suggestion, it is simpler.

                                J.HilkJ Offline
                                J.HilkJ Offline
                                J.Hilk
                                Moderators
                                wrote on last edited by
                                #18

                                @Bengt-0 can you post your whole class?

                                If I have the time, I'll rework it into Signal&Slot


                                Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                                Q: What's that?
                                A: It's blue light.
                                Q: What does it do?
                                A: It turns blue.

                                B 2 Replies Last reply
                                0
                                • B Bengt 0

                                  @KroMignon

                                  for the moment, this solution seems to be working:

                                      for(;;) {
                                          numread = read(buf,128);
                                          numreadTotal +=numread;
                                          if(numread) strcat(Buffer,buf);
                                          if(numread == 0 && !waitForReadyRead(10)) break;
                                          if(atEnd()) break;
                                      }
                                      strcpy(str,Buffer);
                                  

                                  No timeout with error() = 12.
                                  I will try your suggestion, it is simpler.

                                  KroMignonK Offline
                                  KroMignonK Offline
                                  KroMignon
                                  wrote on last edited by
                                  #19

                                  @Bengt-0 said in QSerialPort::waitForReadyRead exits with timeout:

                                  No timeout with error() = 12.
                                  I will try your suggestion, it is simpler.

                                  It is very difficult for me to understand what exactly is your issue. So I probably not give you the answer you are waiting for.
                                  Just to summarize:

                                  • You can work in polled/synchronous mode: no need of QEventLoop but it should not be done on main thread in graphical application, because the EventLoop of this thread will be "looked" during the process.
                                  • You can work in asynchronous. In this case an QEventLoop is mandatory
                                  • You should not mix them

                                  If you want the polling mode, it is better to clearly define an "ending" condition. There are many things that could happen during transmission and locking the QEventLoop for too long time is not good.

                                  For example you can define

                                  • the maximum time to wait for reply
                                  • the reply size
                                  • the maximum delay between message bytes.

                                  QElapsedTimer is a good way for time measurement in polling mode, in my eyes.
                                  So this could be a good starting point (up to you to adapt it to your requirements):

                                  QElapsedTimer exitTmr; // to exit when too long
                                  QElapsedTimer intervalTmr; // to exit when reception ends
                                  
                                  exitTmr.start();
                                  intervalTmr.invalidate();
                                  QByteArray reply;
                                  
                                  // Wait up to 30 seconds or 128 byte received or more than 300ms elapsed since last reception
                                  while(!exitTmr.hasExpired(30000) && reply.length() < 128 && !(intervalTmr.isValid() && intervalTmr.hasExpired(300)))
                                  {
                                      serial.waitForReadyRead(100);
                                      while(serial.bytesAvailable())
                                      {
                                          reply.append(serial.readall());
                                          intervalTmr.start();
                                      }
                                  }
                                  

                                  It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

                                  1 Reply Last reply
                                  1
                                  • B Offline
                                    B Offline
                                    Bengt 0
                                    wrote on last edited by Bengt 0
                                    #20

                                    Let me explain the application briefly, to clarify the issue.

                                    The purpose is to measure and process positions of objects using a microscope and a X-Y table with digital readout in a university lab environment. The application is expected to run 24/7 and be operated by several (>50) users with varying expertise and experience. The software has been functioning for about 15 years. Minor code updates and rebuilds have been done a few times per year to add features and to verify that it is still working with the ever changing Windows operating system.

                                    About 6 months ago we experienced intermittent malfunction in the position acquisition, which could be corrected by restarting the software. Not all users would be able to see this and act accordingly. We suspected a correlation to the change of Qt version from 5.9.6 and the compiler from VS2013 to VS2019. Instead of regressing back to Qt 5.9.6 (no longer supported by Qt) and VS2013, I decided to go through the code and try to find the fault, "modernise" it and make it more robust to serial communication failures. The serial port code has not been changed for a long, long time.

                                    One of the features I added was to pick up if a port->error() occurred and make this do a port->clear(). This is why I was reluctant to accept a waitFRR timeout as a repeatedly occurring event in the port read loop. This strategy is working satisfactory, the error and port clear() can be optionally logged.

                                    Up till now the loop has been using blocking code both for port write and read. With a repetition period of 250ms, the impact on the GUI is very minor so I have no strong functional incentives to change to signal/slot mode.

                                    The software has a QTimer based loop, every 250ms the timer event slot is calling a method in the derived QSerialPort class that sends a read request to the XY-stage controller, and reads the answer back. The answer is a string "1.234 5.678\r" which is then returned to the caller. This string is then parsed to make a QPointF object.
                                    The timer can also be turned off, and a point can be acquired in "non-live" mode by pressing a "Log Position" button in the GUI. This has been shown to be problematic since more than one point can be present in the port buffer, so the result of the request may not be the position the XY-stage is currently in. Two or even three push button requests may be needed to get the true current (last) position. In "live mode" this is not a problem, since there will be 4 read requests per second, and the stage position is not moving when the point is being measured. In "non-live" mode it is very important that the sport buffer is empty and the very last position is used, and the previous points are scrapped. This is the reason for all the fuss about emptying the port buffer.

                                    I am very thankful for all of your suggestions, I have learnt a lot. It has been a bit uphill, since the last time I worked with the serial port code was 5-10 years ago. Programming is not my profession nor my daily occupation, as you probably have understood.

                                    Thanks for your patience.

                                    1 Reply Last reply
                                    0
                                    • J.HilkJ J.Hilk

                                      @Bengt-0 can you post your whole class?

                                      If I have the time, I'll rework it into Signal&Slot

                                      B Offline
                                      B Offline
                                      Bengt 0
                                      wrote on last edited by
                                      #21

                                      @J-Hilk
                                      I would be happy to do so, just let me clean up a bit first...

                                      1 Reply Last reply
                                      0
                                      • J.HilkJ J.Hilk

                                        @Bengt-0 can you post your whole class?

                                        If I have the time, I'll rework it into Signal&Slot

                                        B Offline
                                        B Offline
                                        Bengt 0
                                        wrote on last edited by
                                        #22

                                        @J-Hilk

                                        The calling method (every 250msec) , just to set the context:

                                        PAMS_Point
                                        PAMSApp::ReadPosition(bool init)
                                        {
                                        	PAMS_Point pos;
                                        	PAMS_Point mark;
                                        	PAMS_Point errmark(0,0,false);
                                        	QString PosString;
                                                char str[512]="";
                                                int len = 0;
                                        
                                        	SerialPort *port;
                                        	
                                        	port = fSettings->GetSerialPort();
                                        	if(!port) return errmark;
                                        	if(!port->Status()) return errmark;
                                                if(init) {port->ZeroSCD();}
                                        
                                                len = port->GetSCDPos(ALL,str);
                                        
                                               if(!len) return errmark;
                                        
                                                PosString = str;
                                        
                                        	mark = ParseSCDString(PosString);
                                        			
                                        	return mark;	
                                        
                                        }
                                        
                                        
                                        

                                        serialport.cpp

                                        /*
                                         * Serial port code adapted to SCD PROFILER instruction set.
                                        */
                                        
                                        #include <stdio.h>
                                        #include <stdlib.h>
                                        #include <string.h>
                                        #include "serialport.h"
                                        #include "PAMS_Types.h"
                                        
                                        SerialPort::SerialPort(QString portname)
                                        {
                                        	PortName = "";
                                            status = OpenComPort(portname);
                                            if(status) PortName = portname;
                                            lasterror = QSerialPort::NoError;
                                            reads = 0;
                                        }
                                        
                                        SerialPort::~SerialPort()
                                        {
                                            if(status) close();
                                        }
                                        
                                        bool
                                        SerialPort::OpenComPort(QString sPortText)
                                        {
                                            bool success = false;
                                            setPortName(sPortText);
                                            setBaudRate(Baud9600);
                                            setFlowControl(QSerialPort::NoFlowControl);
                                            setParity(QSerialPort::NoParity);
                                            setDataBits(QSerialPort::Data8);
                                            setStopBits(QSerialPort::OneStop);
                                            success = open(QIODevice::ReadWrite);
                                            return success;
                                        
                                        }
                                        
                                        int
                                        SerialPort::GetSCDPos(int axis,char *str)
                                        {
                                            bool ok=true;
                                            int err=0;
                                            int len=0;
                                            QByteArray reply;
                                        
                                            char X_axis[10] = "?pos x\r";
                                            char Y_axis[10] = "?pos y\r";
                                            char Z_axis[10] = "?pos z\r";
                                            char A_axis[10] = "?pos\r";
                                        
                                            Buffer[0] = Buffer[1] = (char)NULL;
                                        
                                        	switch(axis)
                                        	{
                                            case XAXIS:	// X-Axis
                                        			PortWrite(X_axis);
                                        			break;
                                            case YAXIS:	// Y-Axis
                                        			PortWrite(Y_axis);
                                        			break;
                                            case ZAXIS:	// Z-Axis
                                        			PortWrite(Z_axis);
                                        			break;
                                            case ALL:	// All-Axes
                                        			PortWrite(A_axis);
                                        			break;
                                        	default:return 0;
                                        			break;
                                            }
                                        
                                            err = error();
                                            lasterror = err;
                                        
                                            ok = waitForBytesWritten(500);
                                            if(!ok){
                                                err = error();
                                                lasterror = err;
                                            }
                                        
                                            ok = waitForReadyRead(100);
                                            if(!ok){
                                                err = error();
                                                lasterror = err;
                                            }
                                        
                                            while(bytesAvailable())
                                            {
                                                reply.append(readAll());
                                            }
                                            
                                            strcpy_s(str,512,reply.data());
                                            len = (int)strlen(str);
                                        
                                            if (!lasterror) reads += 1;
                                        
                                            return len;
                                        }
                                        
                                        bool
                                        SerialPort::PortClear(void)
                                        {
                                            bool rc;
                                            rc = clear();
                                            clearError();
                                            lasterror = error();
                                            return rc;
                                        }
                                        
                                        void 
                                        SerialPort::PortWrite(char *request)
                                        {
                                            if(isOpen()) {
                                                write(request,strlen(request));
                                        	}
                                        
                                        }
                                        
                                        void
                                        SerialPort::ZeroSCD(void)
                                        {
                                            char command[10]="!pos 0 0";
                                        
                                            PortClear();
                                        	
                                            command[8] = 0x0d;
                                            command[9] = 0;
                                        	
                                        	PortWrite(command);
                                        	
                                        }
                                        
                                        

                                        serialport.h

                                        #ifndef _H_SerialPort
                                        #define _H_SerialPort
                                        
                                        #include <stdio.h>
                                        #include <QtCore>
                                        #include <QIODevice>
                                        #include <QFile>
                                        #include <QSerialPort>
                                        
                                        enum AXIS {XAXIS,YAXIS,ZAXIS,ALL};
                                        
                                        class SerialPort : public QSerialPort
                                        {
                                        	Q_OBJECT 
                                        	
                                        	public:
                                        		 					SerialPort(QString inPortname);
                                        		virtual				~SerialPort();
                                        
                                        	bool status;
                                        
                                        
                                        //========================================================================
                                        // Platform specific routines
                                        //========================================================================
                                        
                                        
                                        public:
                                            ulong		lasterror, reads;
                                        	bool		Status() { return status; };
                                            int 		GetSCDPos(int axis, char *PosString);
                                        	QString		name() {return PortName;};
                                            void 		ZeroSCD(void);
                                        	ulong		GetLastError() {return lasterror;};
                                            ulong		GetReads() {return reads;};
                                            bool        PortClear();
                                        		
                                        protected:
                                        	bool		OpenComPort(QString sPortText);	
                                        	
                                        	QString		PortName;
                                        	void 		PortWrite(char *);
                                        
                                        };
                                        
                                        #endif	// _H_SerialPort
                                        
                                        
                                        J.HilkJ 1 Reply Last reply
                                        0
                                        • B Bengt 0

                                          @J-Hilk

                                          The calling method (every 250msec) , just to set the context:

                                          PAMS_Point
                                          PAMSApp::ReadPosition(bool init)
                                          {
                                          	PAMS_Point pos;
                                          	PAMS_Point mark;
                                          	PAMS_Point errmark(0,0,false);
                                          	QString PosString;
                                                  char str[512]="";
                                                  int len = 0;
                                          
                                          	SerialPort *port;
                                          	
                                          	port = fSettings->GetSerialPort();
                                          	if(!port) return errmark;
                                          	if(!port->Status()) return errmark;
                                                  if(init) {port->ZeroSCD();}
                                          
                                                  len = port->GetSCDPos(ALL,str);
                                          
                                                 if(!len) return errmark;
                                          
                                                  PosString = str;
                                          
                                          	mark = ParseSCDString(PosString);
                                          			
                                          	return mark;	
                                          
                                          }
                                          
                                          
                                          

                                          serialport.cpp

                                          /*
                                           * Serial port code adapted to SCD PROFILER instruction set.
                                          */
                                          
                                          #include <stdio.h>
                                          #include <stdlib.h>
                                          #include <string.h>
                                          #include "serialport.h"
                                          #include "PAMS_Types.h"
                                          
                                          SerialPort::SerialPort(QString portname)
                                          {
                                          	PortName = "";
                                              status = OpenComPort(portname);
                                              if(status) PortName = portname;
                                              lasterror = QSerialPort::NoError;
                                              reads = 0;
                                          }
                                          
                                          SerialPort::~SerialPort()
                                          {
                                              if(status) close();
                                          }
                                          
                                          bool
                                          SerialPort::OpenComPort(QString sPortText)
                                          {
                                              bool success = false;
                                              setPortName(sPortText);
                                              setBaudRate(Baud9600);
                                              setFlowControl(QSerialPort::NoFlowControl);
                                              setParity(QSerialPort::NoParity);
                                              setDataBits(QSerialPort::Data8);
                                              setStopBits(QSerialPort::OneStop);
                                              success = open(QIODevice::ReadWrite);
                                              return success;
                                          
                                          }
                                          
                                          int
                                          SerialPort::GetSCDPos(int axis,char *str)
                                          {
                                              bool ok=true;
                                              int err=0;
                                              int len=0;
                                              QByteArray reply;
                                          
                                              char X_axis[10] = "?pos x\r";
                                              char Y_axis[10] = "?pos y\r";
                                              char Z_axis[10] = "?pos z\r";
                                              char A_axis[10] = "?pos\r";
                                          
                                              Buffer[0] = Buffer[1] = (char)NULL;
                                          
                                          	switch(axis)
                                          	{
                                              case XAXIS:	// X-Axis
                                          			PortWrite(X_axis);
                                          			break;
                                              case YAXIS:	// Y-Axis
                                          			PortWrite(Y_axis);
                                          			break;
                                              case ZAXIS:	// Z-Axis
                                          			PortWrite(Z_axis);
                                          			break;
                                              case ALL:	// All-Axes
                                          			PortWrite(A_axis);
                                          			break;
                                          	default:return 0;
                                          			break;
                                              }
                                          
                                              err = error();
                                              lasterror = err;
                                          
                                              ok = waitForBytesWritten(500);
                                              if(!ok){
                                                  err = error();
                                                  lasterror = err;
                                              }
                                          
                                              ok = waitForReadyRead(100);
                                              if(!ok){
                                                  err = error();
                                                  lasterror = err;
                                              }
                                          
                                              while(bytesAvailable())
                                              {
                                                  reply.append(readAll());
                                              }
                                              
                                              strcpy_s(str,512,reply.data());
                                              len = (int)strlen(str);
                                          
                                              if (!lasterror) reads += 1;
                                          
                                              return len;
                                          }
                                          
                                          bool
                                          SerialPort::PortClear(void)
                                          {
                                              bool rc;
                                              rc = clear();
                                              clearError();
                                              lasterror = error();
                                              return rc;
                                          }
                                          
                                          void 
                                          SerialPort::PortWrite(char *request)
                                          {
                                              if(isOpen()) {
                                                  write(request,strlen(request));
                                          	}
                                          
                                          }
                                          
                                          void
                                          SerialPort::ZeroSCD(void)
                                          {
                                              char command[10]="!pos 0 0";
                                          
                                              PortClear();
                                          	
                                              command[8] = 0x0d;
                                              command[9] = 0;
                                          	
                                          	PortWrite(command);
                                          	
                                          }
                                          
                                          

                                          serialport.h

                                          #ifndef _H_SerialPort
                                          #define _H_SerialPort
                                          
                                          #include <stdio.h>
                                          #include <QtCore>
                                          #include <QIODevice>
                                          #include <QFile>
                                          #include <QSerialPort>
                                          
                                          enum AXIS {XAXIS,YAXIS,ZAXIS,ALL};
                                          
                                          class SerialPort : public QSerialPort
                                          {
                                          	Q_OBJECT 
                                          	
                                          	public:
                                          		 					SerialPort(QString inPortname);
                                          		virtual				~SerialPort();
                                          
                                          	bool status;
                                          
                                          
                                          //========================================================================
                                          // Platform specific routines
                                          //========================================================================
                                          
                                          
                                          public:
                                              ulong		lasterror, reads;
                                          	bool		Status() { return status; };
                                              int 		GetSCDPos(int axis, char *PosString);
                                          	QString		name() {return PortName;};
                                              void 		ZeroSCD(void);
                                          	ulong		GetLastError() {return lasterror;};
                                              ulong		GetReads() {return reads;};
                                              bool        PortClear();
                                          		
                                          protected:
                                          	bool		OpenComPort(QString sPortText);	
                                          	
                                          	QString		PortName;
                                          	void 		PortWrite(char *);
                                          
                                          };
                                          
                                          #endif	// _H_SerialPort
                                          
                                          
                                          J.HilkJ Offline
                                          J.HilkJ Offline
                                          J.Hilk
                                          Moderators
                                          wrote on last edited by
                                          #23

                                          @Bengt-0
                                          ok, here ya go:

                                          #ifndef SERIALPORT_H
                                          #define SERIALPORT_H
                                          
                                          #include <stdio.h>
                                          #include <QtCore>
                                          #include <QIODevice>
                                          #include <QFile>
                                          #include <QSerialPort>
                                          
                                          enum AXIS {XAXIS,YAXIS,ZAXIS,ALL};
                                          
                                          class SerialPort : public QSerialPort
                                          {
                                              Q_OBJECT
                                          
                                              public:
                                                                      SerialPort(QString inPortname);
                                                  virtual				~SerialPort();
                                          
                                          
                                          //========================================================================
                                          // Platform specific routines
                                          //========================================================================
                                          
                                              enum OperationMode {
                                                  NoOperation = 0,
                                                  GetScdPos,
                                                  WriteNoResponse
                                              }m_Mode{NoOperation};
                                          
                                              struct RequestQueue{
                                                  AXIS axis;
                                                  QByteArray data;
                                                  RequestQueue(AXIS a, QByteArray b) : axis(a), data(b){}
                                                  RequestQueue(AXIS a) : axis(a){data.reserve(512);}
                                              };
                                          
                                          public:
                                              void requestSCDPos(AXIS axis);
                                              QString getResponseAsString(){return QString(getOldestResponse());}
                                              QByteArray getOldestResponse();
                                              QByteArray getLatestResponse();
                                          
                                              bool		Status() { return isOpen() && error() == QSerialPort::NoError; };
                                          
                                              QString		name() {return PortName;};
                                              void 		ZeroSCD(void);
                                              ulong		GetLastError() {return lasterror;};
                                              ulong		GetReads() {return reads;};
                                              bool        PortClear();
                                          
                                          protected:
                                              bool		OpenComPort(QString sPortText);
                                          
                                              QString		PortName;
                                              void 		PortWrite(const char *);
                                          
                                          signals:
                                              void responseReceived();
                                          
                                          private slots:
                                              void requestNextData();
                                              void onSerialPortError(QSerialPort::SerialPortError error);
                                              void onReadyRead();
                                              void onBytesWritten(quint64 bytes);
                                          
                                          private:
                                              ulong lasterror, reads;
                                              
                                              QQueue<RequestQueue> m_requestQueue;
                                              QQueue<RequestQueue> m_resultQueue;
                                              
                                              quint64 bytesToWrite = 0;
                                          
                                          };
                                          
                                          #endif	// _H_SerialPort
                                          
                                          
                                          /*
                                           * Serial port code adapted to SCD PROFILER instruction set.
                                          */
                                          
                                          #include <stdio.h>
                                          #include <stdlib.h>
                                          #include <string.h>
                                          #include "serialport.h"
                                          //#include "PAMS_Types.h"
                                          
                                          //Console output for test cases
                                          #include <QDebug>
                                          
                                          SerialPort::SerialPort(QString portname)
                                          {
                                              PortName = "";
                                              if(OpenComPort(portname)) 
                                                  PortName = portname;
                                              lasterror = QSerialPort::NoError;
                                              reads = 0;
                                          
                                              //Sets up the connection from the base class QSerialPort to our own slot onSerialPortError
                                              connect(this, &QSerialPort::errorOccurred, this, &SerialPort::onSerialPortError);
                                              connect(this, &QSerialPort::readyRead, this, &SerialPort::onReadyRead);
                                              connect(this, &QSerialPort::bytesWritten, this, &SerialPort::onBytesWritten);
                                              
                                              //Automatically try to call next data package, when a response was succesfully extracted
                                              connect(this, &SerialPort::responseReceived, this, &SerialPort::requestNextData);
                                          }
                                          
                                          SerialPort::~SerialPort()
                                          {
                                              if(isOpen())
                                                  close();
                                          }
                                          
                                          bool SerialPort::OpenComPort(QString sPortText)
                                          {
                                              bool success = false;
                                              setPortName(sPortText);
                                              setBaudRate(Baud9600);
                                              setFlowControl(QSerialPort::NoFlowControl);
                                              setParity(QSerialPort::NoParity);
                                              setDataBits(QSerialPort::Data8);
                                              setStopBits(QSerialPort::OneStop);
                                              success = open(QIODevice::ReadWrite);
                                              return success;
                                          
                                          }
                                          
                                          void SerialPort::requestSCDPos(AXIS axis)
                                          {
                                              m_requestQueue.enqueue(RequestQueue(axis));
                                              
                                              if(m_Mode == NoOperation)
                                                  requestNextData();
                                          }
                                          
                                          QByteArray SerialPort::getOldestResponse()
                                          {
                                              if(m_resultQueue.isEmpty())
                                                  return QByteArray();
                                              return  m_resultQueue.dequeue().data;
                                          }
                                          
                                          QByteArray SerialPort::getLatestResponse()
                                          {
                                              //This kind of goes behind the idea of a queue, but it's here just in case
                                              if(m_resultQueue.isEmpty())
                                                  return  QByteArray();
                                              return m_resultQueue.takeLast().data;
                                          }
                                          
                                          bool
                                          SerialPort::PortClear(void)
                                          {
                                              bool rc;
                                              rc = clear();
                                              clearError();
                                              lasterror = error();
                                              return rc;
                                          }
                                          
                                          void
                                          SerialPort::PortWrite(const char *request)
                                          {
                                              if(isOpen()) {
                                                  write(request,strlen(request));
                                              }
                                              
                                          }
                                          
                                          void SerialPort::requestNextData()
                                          {
                                              if(m_resultQueue.isEmpty()){
                                                  m_Mode = NoOperation;
                                                  return;
                                              } 
                                              m_Mode = GetScdPos;
                                              AXIS axis = m_requestQueue.first().axis;
                                              
                                              constexpr char X_axis[10] = "?pos x\r";
                                              constexpr char Y_axis[10] = "?pos y\r";
                                              constexpr char Z_axis[10] = "?pos z\r";
                                              constexpr char A_axis[10] = "?pos\r";
                                          
                                          
                                              switch(axis)
                                              {
                                              case XAXIS:	// X-Axis
                                                      PortWrite(X_axis);
                                                      break;
                                              case YAXIS:	// Y-Axis
                                                      PortWrite(Y_axis);
                                                      break;
                                              case ZAXIS:	// Z-Axis
                                                      PortWrite(Z_axis);
                                                      break;
                                              case ALL:	// All-Axes
                                                      PortWrite(A_axis);
                                                      break;
                                              }
                                          }
                                          
                                          //If the Serialport has an error, the signal that the SerialPort emits will call this function
                                          void SerialPort::onSerialPortError(QSerialPort::SerialPortError error)
                                          {
                                              lasterror = error;
                                              qDebug() << Q_FUNC_INFO << error;
                                          }
                                          
                                          void SerialPort::onReadyRead()
                                          {
                                              if(bytesAvailable() < 512)
                                                  //Not Enough bytes in the buffer, 512 should be small enough so that we don't have to empty the buffer on each readyRead signal
                                                  //And we can let it be in the internal buffer
                                                  return;
                                              
                                              RequestQueue queue = m_resultQueue.dequeue();
                                              quint64 read = readData(queue.data.data(), 512);
                                              
                                              if(read != 512)
                                                  qDebug() << Q_FUNC_INFO << read << "of" << 512;
                                              
                                              m_resultQueue.enqueue(queue);
                                              reads++;
                                              emit responseReceived();
                                          }
                                          
                                          void SerialPort::onBytesWritten(quint64 bytes)
                                          {
                                              if(m_Mode == WriteNoResponse) {
                                                  bytesToWrite -= bytes;
                                                  if(bytesToWrite == 0)
                                                      m_Mode = NoOperation;
                                              }
                                          }
                                          
                                          //No Idea what this is supposed to do (If it will trigger a readyRead or not) I assume not and implemented the bytesWritten signal/slot logic for no response
                                          void
                                          SerialPort::ZeroSCD(void)
                                          {
                                              char command[10]="!pos 0 0";
                                          
                                              PortClear();
                                          
                                              command[8] = 0x0d;
                                              command[9] = 0;
                                          
                                              bytesToWrite = 10;
                                              m_Mode = WriteNoResponse;
                                              
                                              PortWrite(command);
                                          
                                          }
                                          
                                          

                                          The idea here is you call the requestSCDPos(AXIS axis)function with your 250 ms second timer.

                                          Once the serialport class has received all data for one response, the signal void responseReceived(); is emitted. In your other class you simply connect to that signal and request the oldest response with getOldestResponse or QString getResponseAsString

                                          I implemented a queue system, to make the whole system more robust, just in case.


                                          Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                                          Q: What's that?
                                          A: It's blue light.
                                          Q: What does it do?
                                          A: It turns blue.

                                          B 2 Replies Last reply
                                          3

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved