Borrar filtros
Borrar filtros

fscanf warning message

3 visualizaciones (últimos 30 días)
Shawn Chang
Shawn Chang el 22 de Jun. de 2012
Comentada: Walter Roberson el 16 de Jul. de 2019
Hi, I am using serial port communication. I can write and read the data but the warning after "fscanf" keep pop up. Below attached the code. Code:
s=serial('COM6','BaudRate',115200,'Parity','none'...
,'DataBits',8,'FlowControl','none'...
,'Terminator','LF/CR');
fopen(s);
fprintf(s,'t');
out = fscanf(s)
Warning: A timeout occurred before the Terminator was reached.
May i know what is the problem?
  2 comentarios
Abhirama B A
Abhirama B A el 16 de Jul. de 2019
I am also having the same problem even after using the code
set(s, 'TimeOut', 100)
can you help to get rid of this?
Walter Roberson
Walter Roberson el 16 de Jul. de 2019
Check the baud rate you are configuring.
Check that the terminator matches.
Use a program such as TeraTerm to verify that you are able to receive data from the port.

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 22 de Jun. de 2012
If the timeout occurred to early, what about increasing the time?
set(s, 'TimeOut', 100)
? But the default of 10 seconds should be long enough... Perhaps the other parameters are not correct?
  5 comentarios
Shawn Chang
Shawn Chang el 28 de Jun. de 2012
Thanks Jan and Walter replied, now I know how the stuff is worked.
wenshuo dong
wenshuo dong el 1 de Ag. de 2018
Can you tell me what is the problem? how can I figure it out? I meet the same issue as yours. Thanks!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by