Make Serial Communication run in differnt thread from Matlab GUI

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.

답변 (1개)

Walter Roberson
Walter Roberson 2025년 11월 25일

0 개 추천

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

Leo Moritz
Leo Moritz 2025년 11월 25일
편집: Leo Moritz 2025년 11월 25일
Should i then update the GUI in the serial callback or should i use a seperate timer callback to update at a fixed rate?
Update the GUI in the serial callback.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Graphics Performance에 대해 자세히 알아보기

제품

릴리스

R2025b

질문:

2025년 11월 25일

댓글:

2025년 11월 25일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by