-
Notifications
You must be signed in to change notification settings - Fork 2.1k
cpu/esp_common: fix dependency resolution for lwIP #21316
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Strange, why isn't it catched by CI? |
Ah, the example is compiled with |
@@ -44,7 +44,7 @@ ifneq (,$(filter esp_wifi_enterprise,$(USEMODULE))) | |||
endif | |||
|
|||
ifneq (,$(filter netdev_default,$(USEMODULE))) | |||
ifneq (,$(filter lwip,$(USEMODULE))) | |||
ifneq (,$(filter lwip_arp,$(USEMODULE))) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ifneq (,$(filter lwip_arp,$(USEMODULE))) | |
ifneq (,$(filter lwip_netif,$(USEMODULE))) |
lwip_arp
isn't used with LWIP_IPV6=1 LWIP_IPV4=0
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem only occurs with LWIP_IPV4=1
(likely because of the lwip_arp
module), LWIP_IPV6=1
compiles fine with esp_now
.
BTW, I can't reproduce the problem in current master with:
It compiles without any problem. |
Ops, sorry for the confusion, I meant to write |
Contribution description
There is no
lwip
module that gets selected, uselwip_arp
as that seems to be the part that doesn't likeesp_now
that gets otherwise selected.Testing procedure
Compile e.g.
examples/networking/coap/gcoap
withLWIP_IPV4=1
for any esp* board.On
master
you will getIssues/PRs references