Make Serial Communication run in differnt thread from Matlab GUI
13 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Leo Moritz
am 25 Nov. 2025 um 10:11
Kommentiert: Walter Roberson
am 25 Nov. 2025 um 20:36
I want to read serial data continuously and display it in multiple plots with high refresh rate and as little delay as possible. Right now, I use a timer to read the serial data but that makes the GUI very sluggish and unresponsive, especially with high refresh rates. I've read that it's not possible to use serial communication in parallel with the GUI but I know that in Java Swing for example, there is something called a "backgroundWorker" and I assume it should be possible to do something like this in a Matlab GUI as well.
0 Kommentare
Antworten (1)
Walter Roberson
am 25 Nov. 2025 um 10:25
When callbacks are enabled, serial port data is collected through some unspecified asynchronous operation.
I believe that the Execution Engine checks whether a callback has been triggered, at the beginning of every line of MATLAB code. (So if you have a tight loop that is coded all on one line, potentially the loop will not get interrupted.)
I believe that serial port callbacks (and timer callbacks) do not need to wait for waitfor() or pause() or drawnow() or figure()
2 Kommentare
Siehe auch
Kategorien
Mehr zu Graphics Performance finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!