implementing LWIP multicast on STM32F7 + FreeRTOS?
问题 I have a client/server LWIP program that works correctly with unicast communication however I want to use multicast features so I used IGMP library did the following: 1- in lwipopts.h: #define LWIP_IGMP 1 //allowed IGMP 2- in ethernetif.c: netif->flags |= NETIF_FLAG_IGMP; //in low_level_init function 3-in my source file (for both client and server projects): implemented the following code: void recCallBack (void) { printf("connected"); //BREAK_POINT } static void UDP_Multicast_init(void *arg)