Simulink Startfcn Callback fails when using serial() function
조회 수: 3 (최근 30일)
이전 댓글 표시
Matlab 2014a. I have this following function:
function s = open_serial_port()
s = serial('COM2');
set(s,'BaudRate',115200,'Databits',8,'Parity','none','Stopbit',1,'Terminator','LF');
fopen(s);
fprintf(s,'*IDN?')
out = fscanf(s);
disp(out);
Calling it from the Command Window works fine. Calling it from Simulink Startfcn callback does not work, with the following error:
Open failed: Port: COM2 is not available. Available ports: COM1.
Use INSTRFIND to determine if other instrument objects are connected to the requested device.
For some reason COM2 is available from Command Window but not from Simulink Callback?
댓글 수: 0
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Model, Block, and Port Callbacks에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!