Warning: Unsuccessful read: A timeout occurred before the Terminator was reached. 'serial' unable to read any data.

조회 수: 12 (최근 30일)
Hello!
I am trying to read data from Arduino Uno but i get this error "Warning: Unsuccessful read: A timeout occurred before the Terminator was reached. 'serial' unable to read any data."
Can any one help me please ?
Thank you in advance!
clear All
close All
COM = serial('COM2','BaudRate',9600);%5,'Terminator','CR');
set(COM,'TimeOut',10)
fopen(COM);
interv = 240;
init_time = 1;
x =0;
while (init_time < interv)
b = fscanf(COM) ;
b = b(2:end-2);
b = bin2dec(b);
x = [x,b];
plot(x);
grid on ;
init_time = init_time+1;
drawnow;
end
fclose(COM);
delete(COM);
clear COM;

답변 (1개)

Aghamarsh Varanasi
Aghamarsh Varanasi 2020년 12월 28일
편집: Aghamarsh Varanasi 2020년 12월 28일
Hi,
Did you try using 'serialport' function to create the serial connection, as 'serial' function is not recommended to use due to a few compatibility issues.
You can refer to this document to tranform your code to use 'serialport' function.
Also, as the issue seems to be with timeout, you can check with two changes:
  1. Check if the input from Arduino actually has the Terminator 'CR'
  2. Increasing the timeout period
  댓글 수: 4
Walter Roberson
Walter Roberson 2023년 1월 14일
https://knowledge.ni.com/KnowledgeArticleDetails?id=kA03q000000YGw9CAG&l=en-US shows how to use Process Explorer to determine which COM ports exist on your system, and how to figure out which process is already using the port.
Perrhaps your arduino is attached to a different port. Or perhaps some other process has it locked.

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

카테고리

Help CenterFile Exchange에서 Serial and USB Communication에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by