i am working with pyside and trying to do asynchronous serial communication with it but the QtSerialPort is not yet available,
i have used pyserial and moved the serial communication to another thread using
moveToThread()
but i have to check if there there is a message regularly, so i used a QTimer
to handle that every 200 ms,but this solution is over kill, if i can have Qt send a readyRead
signal every time there is data available, the question is precisely is :
is there is a ready module that help with without breaking my whole code depenedency on pyside? if there isn't, what is your tips for quickly implementing one? thanks in advance.