cpu/esp_common: fix dependency resolution for lwIP#21316
Open
benpicco wants to merge 1 commit intoRIOT-OS:masterfrom
Open
cpu/esp_common: fix dependency resolution for lwIP#21316benpicco wants to merge 1 commit intoRIOT-OS:masterfrom
benpicco wants to merge 1 commit intoRIOT-OS:masterfrom
Conversation
Contributor
|
Strange, why isn't it catched by CI? |
Contributor
Ah, the example is compiled with |
gschorcht
requested changes
Mar 22, 2025
|
|
||
| ifneq (,$(filter netdev_default,$(USEMODULE))) | ||
| ifneq (,$(filter lwip,$(USEMODULE))) | ||
| ifneq (,$(filter lwip_arp,$(USEMODULE))) |
Contributor
There was a problem hiding this comment.
Suggested change
| ifneq (,$(filter lwip_arp,$(USEMODULE))) | |
| ifneq (,$(filter lwip_netif,$(USEMODULE))) |
lwip_arp isn't used with LWIP_IPV6=1 LWIP_IPV4=0.
Contributor
Author
There was a problem hiding this comment.
The problem only occurs with LWIP_IPV4=1 (likely because of the lwip_arp module), LWIP_IPV6=1 compiles fine with esp_now.
Contributor
|
BTW, I can't reproduce the problem in current master with: It compiles without any problem. |
Contributor
Author
|
Ops, sorry for the confusion, I meant to write |
This was referenced Mar 28, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Contribution description
There is no
lwipmodule that gets selected, uselwip_arpas that seems to be the part that doesn't likeesp_nowthat gets otherwise selected.Testing procedure
Compile e.g.
examples/networking/coap/gcoapwithLWIP_IPV4=1for any esp* board.On
masteryou will getIssues/PRs references