pioarduino/platform-espressif32

compile without IPv6 enabled (#10582)

Closed this issue · 3 comments

does any branch include [fix(net): Allow to compile without IPv6 enabled (#10582) yet?

Yes, with the Hybrid compile branch. There you can modify sdkconfig settings and the Arduino libs are compiled with this changed settings before the compile run of the Arduino sketch is done with this libs. Used with:

platform = https://github.com/pioarduino/platform-espressif32.git#Arduino/IDF53_work_hybrid

[env:noipv6]
board                   = <your board>
custom_sdkconfig        =
                          '# CONFIG_LWIP_IPV6 is not set'
                          '# CONFIG_LWIP_IPV6_AUTOCONFIG is not set'
                          '# CONFIG_LWIP_PPP_SUPPORT is not set'

See some examples here: https://github.com/arendst/Tasmota/pull/22474/files

perfect - thx for your support!

Will be happy to compile Brautomat32 with when the source code is available ;-)