필터 지우기
필터 지우기

Clear a persistent variable in a MATLAB Fcn block as serial object

조회 수: 3 (최근 30일)
Marco
Marco 2014년 2월 26일
답변: Ryan Livingston 2014년 4월 2일
Hello! I am using following code for read data from serial port:
function y = fcn(u)
coder.extrinsic('only3')
coder.extrinsic('strncmp')
coder.extrinsic('serial', 'fopen','fread')
coder.extrinsic('get')
persistent s a b
y = uint8(zeros(2,1)); %signal is an uint8
if isempty(s)
% only do this the first time
s = serial('COM12','Terminator','', 'InputBufferSize', 1024);
a = '000';
b = false;
a = only3(get(s,'status'));
b = strncmp(a,'clo',3);
switch double(b)
case 1
fopen(s);
otherwise
fclose(s);
end
end
y = uint8(fread(s,[2 1],'uint8'));
Where 'only3' is my function that takes only the first 3 chars from a string. The problem is that communication does not terminate with simulation stopping. Switch case has no effect (I thought that it shuts down reading after an other run). How can I clear persistent variable 's' and reset the block after stopping?

답변 (3개)

Paul
Paul 2014년 2월 26일
  댓글 수: 1
Marco
Marco 2014년 2월 27일
I tried that but it returns an error:
Open failed: Port: COM12 is not available. No ports are available. Use INSTRFIND to determine if other instrument objects are connected to the requested device. Block Gyro/Serial Read (#59) While executing: State During Action
where #59 points to 'fopen(s)' command

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


Friedrich
Friedrich 2014년 2월 27일
편집: Friedrich 2014년 2월 27일
Hi,
A MATLAB FCN Block is a bad idea here. Better would be a MATLAB LVL 2 S-function because you can better control your serial port. In the mdlStart you create your serial object and later in the mdlTerminate you close it propperly. In the mdlOutputs you calculate the signal as usual.
  댓글 수: 6
Marco
Marco 2014년 2월 28일
Are you saying that I have to modify mdlInitializeSizes section as:
function [sys,x0,str,ts]=mdlInitializeSizes(stime)
global s
s = serial('COM12');
fopen(s)
sizes = simsizes;
sizes.NumContStates = 0;
sizes.NumDiscStates = 0;
sizes.NumOutputs = 2;
sizes.NumInputs = 0;
sizes.DirFeedthrough = 1;
sizes.NumSampleTimes = 1; % at least one sample time is needed
sys = simsizes(sizes);
x0 = [];
str = [];
ts = [stime 0];
end
??? In this way it should call object creation and opening only one time, is it?
Friedrich
Friedrich 2014년 3월 3일
Yes. You open the serial port in the mdlInitializeSizes and close it in the mdlTerminate.

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


Ryan Livingston
Ryan Livingston 2014년 4월 2일
Another thought could be to use the serial port I/O blocks directly in Simulink. See the Blocks heading here:
I am not too familiar with them, but they may facilitate a simpler interface to your hardware.
These could perform the I/O and then you could process the data using the method of your choosing.

카테고리

Help CenterFile Exchange에서 Simulink Functions에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by