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. serial port in dll
Forum Updated to NodeBB v4.3 + New Features

serial port in dll

Scheduled Pinned Locked Moved General and Desktop
dllserial port
50 Posts 4 Posters 28.1k Views 3 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.
  • SGaistS SGaist

    Following your various piece of code, you don't have any class called MyLib containing Test(int) nor any namespace containing such a function

    C Offline
    C Offline
    chr_sch
    wrote on last edited by
    #38

    @SGaist
    I changed the name, because the actual is a bit long. My class is Messwert_zuordnung_dll.
    The function for the export is Test.

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #39

      Ok so your

      MyLib c;
      c.test(b);
      

      should rather be:

      Messwert_zuordnung_dll mzd;
      mzd.Test(b);
      

      correct ?

      So, when you are building your dll, do you get both the dll and corresponding lib file ?

      Interested in AI ? www.idiap.ch
      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

      C 1 Reply Last reply
      0
      • SGaistS SGaist

        Ok so your

        MyLib c;
        c.test(b);
        

        should rather be:

        Messwert_zuordnung_dll mzd;
        mzd.Test(b);
        

        correct ?

        So, when you are building your dll, do you get both the dll and corresponding lib file ?

        C Offline
        C Offline
        chr_sch
        wrote on last edited by
        #40

        @SGaist
        Yes that´s correct. Sorry at this point for the confusion with the names.

        Yes the build creates a .dll/.lib and .obj file.
        At the beginning I had some trouble with the link I set as dependent path and libs in the pro file because there where a space in it. The error said "could not open .obj" so maybe it the program tries to open the .obj instead of the .dll ?

        1 Reply Last reply
        0
        • SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by
          #41

          No, you should link to the lib file. However having space in your path on Windows is generally a Bad Thing (™) so just avoid them altogether

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          C 1 Reply Last reply
          0
          • SGaistS SGaist

            No, you should link to the lib file. However having space in your path on Windows is generally a Bad Thing (™) so just avoid them altogether

            C Offline
            C Offline
            chr_sch
            wrote on last edited by
            #42

            @SGaist
            Yes I realized that this is a problem and renamed the folder. But this was just at the beginning, now it has to be an other problem

            1 Reply Last reply
            0
            • SGaistS Offline
              SGaistS Offline
              SGaist
              Lifetime Qt Champion
              wrote on last edited by
              #43

              It still can't find it ? Did you implement Test(int a) ?

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              C 1 Reply Last reply
              0
              • SGaistS SGaist

                It still can't find it ? Did you implement Test(int a) ?

                C Offline
                C Offline
                chr_sch
                wrote on last edited by
                #44

                @SGaist
                What exactly do you mean with implement ?
                Under the exportet class in "public" I added "void Test(int a)" and right clicked refractor and added the function to the cpp file.

                1 Reply Last reply
                0
                • SGaistS Offline
                  SGaistS Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on last edited by
                  #45

                  Then it's been implemented

                  Interested in AI ? www.idiap.ch
                  Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                  C 1 Reply Last reply
                  0
                  • SGaistS SGaist

                    Then it's been implemented

                    C Offline
                    C Offline
                    chr_sch
                    wrote on last edited by chr_sch
                    #46

                    @SGaist
                    I created an other time a new project and did all step by step. After all the dll works. I wrote the dll and the test program exactly as in the files before. I don´t know where the difference is.

                    I am able to pass an integer through the function of my dll.
                    In the next step I would like to establish an serial port and send the passed integer to my mikrocontroller.
                    The code whrer i implement the serial port looks like this:

                    QSerialPort *serial;
                    
                    void Messwert_zuordnung_dll::Test(int a){
                        serial = new QSerialPort();
                    
                    
                        //+++++++++++++++++++++++++++++++++++
                        //+++++++++++++++++++++++++++++++++++
                        // COM-Port, checked in device manager!
                    
                        serial->setPortName("COM12");
                    
                        //+++++++++++++++++++++++++++++++++++
                        //+++++++++++++++++++++++++++++++++++
                    
                    
                        serial->setBaudRate(QSerialPort::Baud115200);
                        serial->setDataBits(QSerialPort::Data8);
                        serial->setParity(QSerialPort::NoParity);
                        serial->setStopBits(QSerialPort::OneStop);
                        serial->setFlowControl(QSerialPort::SoftwareControl);
                    
                        serial->open(QIODevice::ReadWrite);
                        serial -> write(c);
                        serial->close();
                    

                    The connection can´t be opened and in the console of the test program I get the following error:
                    "QObject::start timer: Timers can only be used with threads started with QThread"

                    What means this? In my GUI i did not start a Thread seperatly. How can I solve this error?

                    1 Reply Last reply
                    0
                    • SGaistS Offline
                      SGaistS Offline
                      SGaist
                      Lifetime Qt Champion
                      wrote on last edited by
                      #47

                      Are you calling that function from your application main thread ?

                      Note that you have a memory leak since you don't delete serial

                      Interested in AI ? www.idiap.ch
                      Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                      C 1 Reply Last reply
                      0
                      • SGaistS SGaist

                        Are you calling that function from your application main thread ?

                        Note that you have a memory leak since you don't delete serial

                        C Offline
                        C Offline
                        chr_sch
                        wrote on last edited by chr_sch
                        #48

                        @SGaist
                        Ok I will delet the serial object.

                        I call the dll function in the main.cpp of my test program.
                        I tried to create the QSerialPort *serial and the object serial=new QSerialPort in the main.cpp of my test program and pass it to the dll function, so that in my dll the object created in the test program is used. But the connection can´t be opened.

                        1 Reply Last reply
                        0
                        • SGaistS Offline
                          SGaistS Offline
                          SGaist
                          Lifetime Qt Champion
                          wrote on last edited by
                          #49

                          What do you mean by "connection can't be opened" ? What error did you get ?

                          Interested in AI ? www.idiap.ch
                          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                          C 1 Reply Last reply
                          0
                          • SGaistS SGaist

                            What do you mean by "connection can't be opened" ? What error did you get ?

                            C Offline
                            C Offline
                            chr_sch
                            wrote on last edited by
                            #50

                            @SGaist
                            If i pass the object(QSerialPort) through the function to the dll, the test program stuck and there is no error written in the console.

                            If i create the object (QSerialPort) in the dll the following error is shown:
                            "QObject::start timer: Timers can only be used with threads started with QThread"

                            1 Reply Last reply
                            0

                            • Login

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