Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
Drexel University or The Math Forum.
|
|
|
|
Re: serial communication problem
Posted:
Apr 14, 2011 9:12 PM
|
|
"anil " <anil.m.007@gmail.com> wrote in message <inules$a5m$1@fred.mathworks.com>... > hi everyone, > > i am creating serial communication in matlab.for communicating with micro controller > if i want to read some data from micro controller in matlab says warning error like > > Warning: The specified amount of data was not returned within the Timeout > period. > > what is that mean i increased timeout in matlab 0.05 to 0.1 but still its giving same waring > but its reading tha data > how to avoid this warning > > plz help me... > > thank you,
Anil,
As the error indicates you might be reading data when there is no data to read or the time specified in the timeout property is reached before any data was read.
Having a Timeout of 0.1 sounds too small. Is there a reason why you have that value to 0.2 instead of the default value of 10?
You should also check the BytesAvailable property of the object. That indicates the bytes you have available to read.
Hope this helps.
-Ankit
|
|
|
|