How to store continuous serial data from COM port

31 Ansichten (letzte 30 Tage)
Clay Robinson
Clay Robinson am 2 Aug. 2019
Hey guys,
I'm trying to collect data from an engine dyno via serial port, and am having some issues. I have no problem obtaining one line of data using the code below, but I need a continous stream of data.
s = serial('COM3','BaudRate',19200,'DataBits',8, 'StopBits',1,'Terminator','CR/LF') %creates serial object for serial/USB adapter 'COM#', use command seriallist to find available ports
fopen(s); %open COM port connection
fprintf(s,'OD') %send "Output Data" command to controller
fgets(s) %view 1 line of output string from controller
So far my code will return one 1x15 char in the form 'S 7945T0.795R' (S= rpm, T=torque output, R/L=rotation direction. The problem is, using fgets(s), if I try and use it more than once, i get the following error:
Warning: A timeout occurred before the Terminator was reached.
'serial' unable to read any data. For more information on possible reasons, see Serial Read
Warnings.
This means that in order to continue to get data I have to repeat the 'Output Data' command to the dyno, and I only get 1 line of data before timeout. The dyno should output at 60Hz, any ideas on how to get a continous data stream and store it so I can parse out the variables with a different code?
Cheers!
  3 Kommentare
Clay Robinson
Clay Robinson am 5 Aug. 2019
Bearbeitet: Clay Robinson am 5 Aug. 2019
No, the serial port on the device puts outputs 15 bytes at a time at 60Hz, I just need some programming direction on how to read and store the data. I think the problem may be that every line is terminated with a CR-LF, and that is stopping the data read after it gathers one packet, but I'm not sure how to fix that.
Walter Roberson
Walter Roberson am 5 Aug. 2019
I recommend doing some testing using a program such as Teraterm

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Divya Yerraguntla
Divya Yerraguntla am 8 Aug. 2019
Hi,
In order to receive a continuous stream of data you can set the ‘IsContinuous’ property of the serial object (‘s’ in your case) to 1, this allows nonstop flow of data. Have a look at the link to use this property.

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by