QSerialPort: how to adjust the emiting time of readysignal using number of bytes received
-
I am using Qserialport to receive a 7 byte data on every 10 ms. the baud rate is 115200. and i use signal(readyread) and slot(readLine in a separate function) method. the ready read signal is only emitted on every 16ms. but my device sends data at 10 ms interval. How to receive the samples at 10ms interval. how to make the readyread signal to emit at 10ms interval. Thanks
-
Nohow.