sACN
3.0.0
Implementation of ANSI E1.31 (Streaming ACN)
|
View other versions:
|
Lightweight IP (lwIP) is a lightweight embedded TCP/IP stack. When including sACN in a lwIP project, the following lwIP configuration options are required:
LWIP_IPV4=1
: sACN devices are required to support IPv4.NO_SYS=0
: EtcPal uses the lwIP sockets API which requires this.LWIP_SOCKET=1
: EtcPal uses the lwIP sockets API which requires this.SO_REUSE=1
: Allows sACN multicast reception to work properly.SO_REUSE_RXTOALL=1
: Allows sACN multicast reception to work properly.LWIP_IGMP=1
: Allows sACN to play nicely with multicast network infrastructure.LWIP_NETBUF_RECVINFO=1
: Allows sACN multicast reception to work properly.Note that, on lwIP, multicast reception is currently only supported on IPv4 interfaces. IPv6 support will eventually be added, at which point this text will be updated to indicate the lwIP version required.