フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Matlab having problem interpreting streamed string into numbers.

1 回表示 (過去 30 日間)
fima v
fima v 2020 年 10 月 28 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
Hello , i am sending 0x61 over and over which is the letter 'a' to matlab as shown bellow.
But when i want to convert the recieved letters into number and plot it gives me all NAN instead of 61 as shown bellow.
sObject=serial('COM4','BaudRate',115200,'TimeOut',10,'Terminator','LF')
Why do i get this NAN,i tried to plot and i get blank screen,why it cant convert my sent data into numbers?
Thanks.
function callbackSerial(ser,~)
global time;
val=fscanf(ser);
numval=str2double(val)
%numval=dec2bin(val);
time(16)=numval;
time(1)=[];
disp(time);
figure(1),plot(time);
end
  5 件のコメント
fima v
fima v 2020 年 10 月 29 日
Hello Rik, to your question i dont know how its recieved by matlabs i cant describe how i serially connect to MATLAB i use
val=fscanf(sObject);
To connect serial communication to matlab i use the following code.
In general i dont send character i send UINT8 data,specifically for our case
i send 0x61 ('a' value) and '\n' for LF terminator shown bellow.
how do i catch the HEX data
sObject=serial('COM4','BaudRate',115200,'TimeOut',10,'Terminator','LF')
sObject.BytesAvailableFcn={@callbackSerial};
fopen(sObject);

回答 (1 件)

Steven Lord
Steven Lord 2020 年 10 月 29 日
Please remove the semicolon from the end of this line, let your callback trigger a few times, and show us exactly what gets displayed in the Command Window.
val=fscanf(ser);
That information will likely help us determine how to "interpret" the data you're receiving from the serial port.
I suspect what you want is hex2dec not str2double, but the information about what exactly val is will support or refute that suspicion.
  1 件のコメント
fima v
fima v 2020 年 10 月 30 日
Hello steven, i have written again and added the data you asked in the link shown bellow
could you answer it?
https://www.mathworks.com/matlabcentral/answers/630864-serial-communication-shows-huge-batch-istead-of-steady-small-bursts?s_tid=srchtitle

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by