Replies: 2 comments
-
I have not tried |
Beta Was this translation helpful? Give feedback.
0 replies
-
I think you're trying to manually do something the CLI takes care of for you. CI uses |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Looking for some help here ... With the IDE I can select
Tools->IP/Bluetooth Stack->IPv4 + Bluetooth
to enable bluetooth when building using the IDE. I see that selecting this option sets the following:So I created a little wrapper (IPv4 + BT):
This works, but fails linking with the error
I determined that this is due to
WiFi.localIP().toString()
requiring IPv6, so I enabled IPv6 and changed tolibipv4-ipv6-bt.a
which compiles, links and runs correctly.Wrapper with IPv4 + IPv6 + BT
So I guess my question is "Is this the BEST way to do this?" And maybe the code related to
WiFi.localIP().toString()
when IPv6 is disabled can be updated to work with just IPv4 (I haven't looked at the code yet).Beta Was this translation helpful? Give feedback.
All reactions