How can I receive UDP multicast data in MATLAB using Instrument Control Toolbox?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am trying to receive UDP multicast packets, but fread() timeout. Thanks.
1 comentario
Walter Roberson
el 23 de Feb. de 2019
I suspect it is not implemented. See https://www.mathworks.com/matlabcentral/answers/91896-is-it-possible-to-connect-to-a-udp-multicast-using-the-instrument-control-toolbox-2-2-r14sp2
xpc (Simulink Real-Time) UDP receive block does support multicast though.
Respuestas (1)
Munish Raj
el 25 de Feb. de 2019
1 comentario
Walter Roberson
el 25 de Feb. de 2019
That is for broadcasting UDP, not for receiving multicast. It relies upon the fact that anything sent to the highest address in your subnet is broadcast to everything on the same physical subnet (by definition these Must Not pass through a router.)
In order to receive multicast, you would either need to somehow go through a proper multicast group registration as defined in the standards, or else you would need to be using a slightly broken IP stack that permitted you to define your interface address as being one of the 224.0.0.x IP addresses, which you are not really supposed to be able to do. The alternative would be to have have privileges enough to register to receive all packets, which would include all multicast packets, and then to throw away everything you were not interested in.
Ver también
Categorías
Más información sobre Development Computer Setup 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!