フィルターのクリア

Receive data from COM

1 回表示 (過去 30 日間)
lafe
lafe 2016 年 11 月 22 日
編集済み: lafe 2016 年 11 月 23 日
I am trying to make a code that will read data from a COM (in my case TCP/IP connection) every time that the data appears without using an infinite loop or without determining how many times the loop will happen. I’m expecting to receive packets with deferent size. Till now I have only accomplice to receive data with this code:
while 1
len = s1.BytesAvailable; % wait to receive a new character
while len == 0
len = s1.BytesAvailable;
end
in = fread(s1,1);
fprintf('\n 1character received %d',in)
end
any help please?

回答 (0 件)

カテゴリ

Help Center および File ExchangeGuidance, Navigation, and Control (GNC) についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by