GUI SERIAL COMMUNICATION INTERRUPT FUNCTION

조회 수: 4 (최근 30일)
Daniel
Daniel 2016년 4월 21일
댓글: Jeff King 2018년 1월 16일
I want to run a serial communication with a device.
i want all incoming messages to be displayed automatically. don't want to press a special button for that.
i tried using the
handles.serPIC.BytesAvailableFcnCount = @MyInterruptFcn
...
...
...
function MyInterruptFcn(hObject, eventdata)
{code for the interrupt function}
end
but this has no result

채택된 답변

Walter Roberson
Walter Roberson 2016년 4월 21일
handles.serPIC.BytesAvailableFcn = @MyInterruptFcn;
handles.serPIC.BytesAvailableFcnCount = 1; %or as appropriate
fopen(handles.serPIC)
  댓글 수: 6
Daniel
Daniel 2016년 4월 21일
thanks you its working
Jeff King
Jeff King 2018년 1월 16일
Thanks, this post was extremely helpful!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Signal Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by