Filter löschen
Filter löschen

Cannot get a feedback by serial connection from a device

1 Ansicht (letzte 30 Tage)
Sahar Azar
Sahar Azar am 15 Jan. 2020
Beantwortet: Chidvi Modala am 30 Jan. 2020
I am trying to communicate by serial connection with a device (Vertex 7200) but without success.
We did succeeded to communicate with PuTTY and to get a feedback from the device (the feedback is integer).
I configured the connection with the code below in the MATLAB R2019b:
instrreset;
s = serial('COM5');
set(s,'BaudRate',9600,'StopBits',1,'FlowControl','none','Parity','none','DataBits',8,'OutputBufferSize',22);
s.InputBufferSize=22;
s.TimeOut=5;
%CreateSerialPort.Terminator = 'CRLF';
fopen(s);
fwrite(s, 'ALARM F');
output = fread(s);
fclose(instrfind);
clear CreateSerialPort;
All the parameters on the third line are configured the same as in the device that we are trying to communicate with.
The cable double checked and work properly.
The output value that we get in the 'Workspace' is ASCII values of the string command that we sent.
As well we get this warning: "Warning: The specified amount of data was not returned within the Timeout period.
'serial' unable to read any data. For more information on possible reasons, see Serial Read Warnings. "
Thanks for the assistance!

Antworten (1)

Chidvi Modala
Chidvi Modala am 30 Jan. 2020

Kategorien

Mehr zu Block Libraries 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!

Translated by