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. Issue with the serial data received and processing time

Issue with the serial data received and processing time

Scheduled Pinned Locked Moved Solved General and Desktop
18 Posts 5 Posters 3.1k Views
  • 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.
  • VRoninV Offline
    VRoninV Offline
    VRonin
    wrote on last edited by
    #8

    MainWindow::readData() you posted above never interacts with serialPort so I'm a bit confused on how that works...

    "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
    ~Napoleon Bonaparte

    On a crusade to banish setIndexWidget() from the holy land of Qt

    KiraK 1 Reply Last reply
    1
    • VRoninV VRonin

      MainWindow::readData() you posted above never interacts with serialPort so I'm a bit confused on how that works...

      KiraK Offline
      KiraK Offline
      Kira
      wrote on last edited by
      #9

      @VRonin : It interacts when using this:
      connect(serialPort, &QSerialPort::readyRead,this,&MainWindow::readData);
      Above get called when data is generated at serial port.
      For more clarity
      void MainWindow::readData()
      {
      QByteArray readData = serialPort->readAll();
      if(receivedData.contains("a"))
      {
      funA();
      funB(); //Function to save image creates a delay sometimes
      }
      }

      J.HilkJ 1 Reply Last reply
      0
      • KiraK Kira

        @VRonin : It interacts when using this:
        connect(serialPort, &QSerialPort::readyRead,this,&MainWindow::readData);
        Above get called when data is generated at serial port.
        For more clarity
        void MainWindow::readData()
        {
        QByteArray readData = serialPort->readAll();
        if(receivedData.contains("a"))
        {
        funA();
        funB(); //Function to save image creates a delay sometimes
        }
        }

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

        @Kira

        that is a very raw implementation of to handle the readyRead data.
        For example you have no idea if all data is already send to the port. ReadyRead is emitted whenever new data has arrived not when all data has arrived. You'll have to manage that yourself.

        However to answer your original question.

        in your case I would probably use Qt:Concurrent, no need to fully implement QThread for simply saving an image.
        However I usually Thread my SerialPort.

        //PseudoCode:
            QFuture future;
            QFutureWatcher watcher;
            watcher.setFuture(future);
            connect(&watcher, &QFutureWatcher::finished, this, &myClass::processQueue);
        ....
        ....
            if(future.isFinished()){
                future = QtConcurrent::run(imwrite, saveimage, image);
            }else{
                saveQueue.append(MyStruct(saveimage,image));
            }
        

        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.

        KiraK 1 Reply Last reply
        4
        • mrdebugM Offline
          mrdebugM Offline
          mrdebug
          wrote on last edited by
          #11

          I suggest you to use thread.
          In the run() you can try this:

          QByteArray QBABufferInTemp;
          while (DoStart) {
              SerialPort.waitForReadyRead(50);
              QBABufferInTemp.append(SerialPort.readAll());
              if (QBABufferInTemp.size()> 0) {
                  if (HasTheBufferGotTheTerminator(QBABufferInTemp)) {
                      // extract data from the buffer
                      // emit
                  }
              }
          

          Need programmers to hire?
          www.labcsp.com
          www.denisgottardello.it
          GMT+1
          Skype: mrdebug

          KiraK jsulmJ 2 Replies Last reply
          1
          • J.HilkJ J.Hilk

            @Kira

            that is a very raw implementation of to handle the readyRead data.
            For example you have no idea if all data is already send to the port. ReadyRead is emitted whenever new data has arrived not when all data has arrived. You'll have to manage that yourself.

            However to answer your original question.

            in your case I would probably use Qt:Concurrent, no need to fully implement QThread for simply saving an image.
            However I usually Thread my SerialPort.

            //PseudoCode:
                QFuture future;
                QFutureWatcher watcher;
                watcher.setFuture(future);
                connect(&watcher, &QFutureWatcher::finished, this, &myClass::processQueue);
            ....
            ....
                if(future.isFinished()){
                    future = QtConcurrent::run(imwrite, saveimage, image);
                }else{
                    saveQueue.append(MyStruct(saveimage,image));
                }
            
            KiraK Offline
            KiraK Offline
            Kira
            wrote on last edited by
            #12

            @J.Hilk : Thanks for the reply as per the above Psuedocode what i understand is
            it will use queue to store the data and process it concurrently.

            Please clarify if wrong.

            J.HilkJ 1 Reply Last reply
            0
            • mrdebugM mrdebug

              I suggest you to use thread.
              In the run() you can try this:

              QByteArray QBABufferInTemp;
              while (DoStart) {
                  SerialPort.waitForReadyRead(50);
                  QBABufferInTemp.append(SerialPort.readAll());
                  if (QBABufferInTemp.size()> 0) {
                      if (HasTheBufferGotTheTerminator(QBABufferInTemp)) {
                          // extract data from the buffer
                          // emit
                      }
                  }
              
              KiraK Offline
              KiraK Offline
              Kira
              wrote on last edited by
              #13

              @mrdebug : Cannot buffer the data because camera capture has to be done at time of receiving the signal.
              If i read the buffered data the camera capture times may mismatch.

              1 Reply Last reply
              0
              • mrdebugM mrdebug

                I suggest you to use thread.
                In the run() you can try this:

                QByteArray QBABufferInTemp;
                while (DoStart) {
                    SerialPort.waitForReadyRead(50);
                    QBABufferInTemp.append(SerialPort.readAll());
                    if (QBABufferInTemp.size()> 0) {
                        if (HasTheBufferGotTheTerminator(QBABufferInTemp)) {
                            // extract data from the buffer
                            // emit
                        }
                    }
                
                jsulmJ Offline
                jsulmJ Offline
                jsulm
                Lifetime Qt Champion
                wrote on last edited by
                #14

                @mrdebug I don't see any need for a thread in this case. Multithreading just overcomplicates things here without any benefit.

                https://forum.qt.io/topic/113070/qt-code-of-conduct

                1 Reply Last reply
                3
                • VRoninV Offline
                  VRoninV Offline
                  VRonin
                  wrote on last edited by VRonin
                  #15
                  QByteArray readData = serialPort->readAll();
                  if(receivedData.contains("a"))
                  

                  readData is unused?

                  Your program, I guess, assumes that when you call serialPort->readAll(); the buffer contains 1 and only one "chunck" of data. Such design is extremely unstable. a slow down in your connection speed can destroy your logic.

                  You have to identify different chunks of data. independently of how they reach you

                  "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
                  ~Napoleon Bonaparte

                  On a crusade to banish setIndexWidget() from the holy land of Qt

                  KiraK 1 Reply Last reply
                  4
                  • KiraK Kira

                    @J.Hilk : Thanks for the reply as per the above Psuedocode what i understand is
                    it will use queue to store the data and process it concurrently.

                    Please clarify if wrong.

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

                    @Kira said in Issue with the serial data received and processing time:

                    @J.Hilk : Thanks for the reply as per the above Psuedocode what i understand is
                    it will use queue to store the data and process it concurrently.

                    Please clarify if wrong.

                    no, thats about it.
                    And thats the ways this stuff is handled usually.

                    Usually one stores the data from readAll() and as soon as you can identify as a coherent data-chunk you pass it along to your process function.


                    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
                    0
                    • VRoninV VRonin
                      QByteArray readData = serialPort->readAll();
                      if(receivedData.contains("a"))
                      

                      readData is unused?

                      Your program, I guess, assumes that when you call serialPort->readAll(); the buffer contains 1 and only one "chunck" of data. Such design is extremely unstable. a slow down in your connection speed can destroy your logic.

                      You have to identify different chunks of data. independently of how they reach you

                      KiraK Offline
                      KiraK Offline
                      Kira
                      wrote on last edited by
                      #17

                      @VRonin :
                      Your assumption is correct regarding serailPort->readAll();
                      Actually the device with which i am communicating is working in controlled environment where behavior and type of signal generated is known in advance. It is expected to generate a the required data at that time. Every signal bit represents the command to capture image at a particular location of the controller. So if suppose two bit get generated at the port it is undesirable because if i process them individually my time and position may mismatch. I may not get the location exactly where the image has to be taken. That why i was in need of better and correct logic to handle such a scenario.
                      Currently it is handled by sending acknowledgement to the port but still in need of better logic for it.

                      1 Reply Last reply
                      0
                      • KiraK Offline
                        KiraK Offline
                        Kira
                        wrote on last edited by
                        #18

                        Thanks guys for your answers and time. Moving with logic suggest @J-Hilk instead of QThread for solving the problem.

                        QT forum have always been ever active, best and interactive forum of all time.
                        Thanks :)

                        1 Reply Last reply
                        1

                        • Login

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