You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Program crash with new version of Arduino. New version need TCP lock. You must include #include <lwip/tcpip.h> and in ESPAsyncE131::initMulticast change igmp_joingroup(&ifaddr, &multicast_addr); to:
if (!sys_thread_tcpip(LWIP_CORE_LOCK_QUERY_HOLDER)) {
LOCK_TCPIP_CORE();
}
igmp_joingroup(&ifaddr, &multicast_addr);
if (sys_thread_tcpip(LWIP_CORE_LOCK_QUERY_HOLDER)) {
UNLOCK_TCPIP_CORE();
}
The text was updated successfully, but these errors were encountered:
Program crash with new version of Arduino. New version need TCP lock. You must include
#include <lwip/tcpip.h>
and in ESPAsyncE131::initMulticast changeigmp_joingroup(&ifaddr, &multicast_addr);
to:The text was updated successfully, but these errors were encountered: