Teensy 4.1 Multicast #76
-
I have been trying to get Multicast working on a Teensy 4.1. I get a failure when I try to join a group. I changed the code to set errno to the error returned from igmp_joingroup_netif so that I could print out the error which is -6 (ENXIO - No such device or address). I am using DHCP to get the address of the Teensy and then use Ethernet.broadcastIP() to get the IP address to pass as the group IP address. Udp.beginMulticastWithReuse(Ethernet.broadcastIP(), 1024) Some debug output showing DHCP worked OK:
Any ideas why this is not working? Do I need to change some configuration in QNEthernet. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
The broadcast address isn’t a multicast address. |
Beta Was this translation helpful? Give feedback.
The broadcast address isn’t a multicast address.