How to resolce callback error : asyncio.Channel/onDataReceived ....line(487):::
12 次查看(过去 30 天)
显示 更早的评论
I am trying to get MATLAB to read a stream of incoming data via a serial port using callback ,
This is a peice of my code
s = serialport("COM4", 115200)
function readSerialData(src,evt)
src.UserData = data;
end
Whenever I type readline(S), I get a one time result but I want it to be automatic whenever a new stream of data arrive, hence my use of callback function.
So whenver I type
configureCallback ("COM4", "terminator" , @ readSerialData)
I get a non stopping error:
Error in asyncio.Channel/onDataReceived (line 487)
notify(obj.InputStream, 'DataWritten', ...
Error in asyncio.Channel>@(source,data)obj.onDataReceived() (line 425)
@(source, data) obj.onDataReceived());
> In asyncio/Channel/onDataReceived (line 487)
In asyncio.Channel>@(source,data)obj.onDataReceived() (line 425)
>>
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!