How to send data in QserialPort thread
-
wrote on 3 Aug 2017, 10:10 last edited by
Hi everyone,
I'm using the QSerialPort with thread to read serialport, also have a mainwindow for GUI. I want to send the data from another class such as mainwindow through serial port. I should use the signal/slot method, qtconcurrent or to invoke the function directly to do it, which is better?for(;counterImageSend<4096*counterPartMemory;counterImageSend+=8){ canbus.data[0]=static_cast<uint8_t>(flashMemory[counterImageSend]); canbus.data[1]=static_cast<uint8_t>(flashMemory[counterImageSend+1]); canbus.data[2]=static_cast<uint8_t>(flashMemory[counterImageSend+2]); canbus.data[3]=static_cast<uint8_t>(flashMemory[counterImageSend+3]); canbus.data[4]=static_cast<uint8_t>(flashMemory[counterImageSend+4]); canbus.data[5]=static_cast<uint8_t>(flashMemory[counterImageSend+5]); canbus.data[6]=static_cast<uint8_t>(flashMemory[counterImageSend+6]); canbus.data[7]=static_cast<uint8_t>(flashMemory[counterImageSend+7]); //send data... }
-
wrote on 3 Aug 2017, 11:50 last edited by
Hi @Gokhan
You can be interested with this link of qt doc
Which Qt Thread Technology Should You Use?
and
Choosing an appropriate approach
I hope this can help you !
-
wrote on 3 Aug 2017, 14:43 last edited by
QSerialPort is already asynchronous so normally you wouldn't need a second thread to write to it.
On a separate note, the code you posted is probably not the right way to handle communication over QSerialPort. you should check how to use QDataStream
-
wrote on 3 Aug 2017, 18:06 last edited by
-
wrote on 4 Aug 2017, 07:01 last edited by
@Gokhan said in How to send data in QserialPort thread:
all data can't be sent
Can you elaborate this point?
-
@Gokhan said in How to send data in QserialPort thread:
all data can't be sent
Can you elaborate this point?
wrote on 4 Aug 2017, 12:53 last edited by Gokhan 8 Apr 2017, 16:58@VRonin Serial port must not miss any data while reading, therefore I can use thread method. Sometimes, while reading big data which is sent immediately so byte-to-byte, unfortunately, have to send the big data. When the data is being sent, there must be a few delay between bytes, so I give a 1ms delay (QThread::msleep(1);). However, because reading and writing are at same thread, it can not read the buffer during writing and it gets an error that is bus-off. What should I do to read/write the serial port in a thread at the same time?
-
wrote on 6 Aug 2017, 20:04 last edited by
I can't find any solution for this, please help me to solve. I have to set a delay is around 1ms while sending bytes. Moreover, at the same time, it has to read the buffer, but the thread is sleeping then and so it misses data.
-
Hi,
You seem to be blocking the communication, why not use Qt's asynchronous nature and buffer the data you receive until you have everything you need to go further ?
-
wrote on 8 Aug 2017, 05:20 last edited by Amogh 8 Aug 2017, 12:15
You can send it using byte array ,by serializing the data in an array and de-serializing it .
-
Hi,
You seem to be blocking the communication, why not use Qt's asynchronous nature and buffer the data you receive until you have everything you need to go further ?
wrote on 8 Aug 2017, 11:09 last edited by Gokhan 8 Aug 2017, 11:15@SGaist Then it misses data while clicking the window bar, I have to use a thread for reading.
@Amogh I have already used the byte array for sending. While sending, it's spending lots of time because it's size is around 512byte and it sends byte-to-byte.
I'm using it like this link for reading and have tried to add the sending method. (qsp-no-freeze)
https://bugreports.qt.io/browse/QTBUG-61233 -
Then move the complete serial port handling to that thread and communicate information back to the main thread when appropriate but there shouldn't be any need to sleeping or blocking.
-
Then move the complete serial port handling to that thread and communicate information back to the main thread when appropriate but there shouldn't be any need to sleeping or blocking.
wrote on 9 Aug 2017, 05:33 last edited by@SGaist Well, how should I communicate with the serial port thread? Signals/Slots or Concurrency? Which better? You say to shouldn't block, but while writing the send buffer, have to wait in order to be writtenBytes. Then how can I check whether it was written a byte?
-
@SGaist Well, how should I communicate with the serial port thread? Signals/Slots or Concurrency? Which better? You say to shouldn't block, but while writing the send buffer, have to wait in order to be writtenBytes. Then how can I check whether it was written a byte?
wrote on 9 Aug 2017, 15:51 last edited byThis post is deleted! -
Please be a bit more patient before bumping your own thread. This is a community forum and people answering here may not live in the same timezone as you.
Signals/Slots, concurrency has nothing to do with inter thread communication.
Why do you have to wait when writing to your serial port ?
-
Please be a bit more patient before bumping your own thread. This is a community forum and people answering here may not live in the same timezone as you.
Signals/Slots, concurrency has nothing to do with inter thread communication.
Why do you have to wait when writing to your serial port ?
wrote on 10 Aug 2017, 04:46 last edited by@SGaist Sorry for impatient, I am struggling with this problem for a week.
To make sure whether really it's written because the receiver has limited receive buffer, also these data will be parsed after that it will send through can bus. -
Are you mixing RS232 and CAN ?
-
wrote on 10 Aug 2017, 07:44 last edited by Gokhan 8 Oct 2017, 08:12
@SGaist It's USB-CAN module, so it converts the received data from USB to send can bus. At the same time, it might be data in can bus line and it has to read. It should never miss data even if the line is full(%100) while reading/writing.
-
These are two different buffers so you should get data even if you are writing something to it.
-
wrote on 11 Aug 2017, 21:50 last edited by Gokhan 8 Nov 2017, 21:51
However, while it's writing, should read the buffer otherwise the line will be bus off and get an error. Unfortunately, because both are in the same thread and shouldn't wait to transfer the data.
-
wrote on 14 Aug 2017, 11:22 last edited by
Well, how can I write data to the serial port when it's in another thread. Is it right method to access directly the writing register? Or Should I use signals/slots?
serilPort *serial= new serialPort(); serial->write(//data); it's right?
1/21