since this is my first question I wanted to say that StackOverflow has helped my countless times. Thank you.
Now to my problem. I am currently trying trying to implement a simple data acquisition application in Qt 5.8. The application has to communicate with a DSP and acquire some voltages at a 100Hz to 10kHz rate. Since I need to do some additional calculations on the acquired voltages I thought it would be a good idea to do the data acquisition and manipulation in a different thread than the GUI thread.
Data acquisition and additional calculation work just fine in a separate thread. My question is, what is the proper way to asynchronously display the results of a worker thread using QtCharts?
Any advice would be deeply appreciated.
Best regards,
T.Krastev