Sending/recieving data via UDP

I am trying to make a program listen for data coming via UDP, and do stuff. So I am working on a UDP listener. I am then running another instance of Matlab and trying to send data via UDP to test the listening.
However, I never get anything in the data stream. I am just trying to send the value 1 currently.
My Listener code:
U = udp('localhost', 4012);
fopen(U);
set(U,'Timeout',10);
continueListening = 1;
blah = 1;
while continueListening
dataStream = fread(U,1)
blah
if dataStream == 555;
continueListening = 0;
disp('Stoping acqusition');
end
blah = blah+1;
end
fclose(U);
And my writer code:
U = udp('localhost', 4012);
fopen(U);
fwrite(U, 1)
fclose(U);

댓글 수: 1

Biruntha Gnaneswaran
Biruntha Gnaneswaran 2015년 10월 25일
I want to send data from pc to raspberry pi. here i use matlab to send data on pc. can i use python code to receive data in raspberry pi?

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

답변 (0개)

카테고리

도움말 센터File Exchange에서 MATLAB Support Package for Raspberry Pi Hardware에 대해 자세히 알아보기

질문:

2014년 11월 19일

댓글:

2015년 10월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by