-
Notifications
You must be signed in to change notification settings - Fork 221
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
esp-wifi: Remove unneeded features #2446
Conversation
11d66f6
to
6af0c4a
Compare
f722919
to
62fc1c6
Compare
Might be worth to mention |
1338c31
to
9a3811e
Compare
Initial scan of the changes seem reasonable, will try to do a more thorough review today. Would you be able to get CI green in the meantime, please? |
9a3811e
to
449f7ba
Compare
449f7ba
to
c23613a
Compare
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.
LGTM, thanks!
Seems we lost the ability to set ps-mode for esp-now only operation but on the other hand I'm not sure if that is even something we should offer (see https://www.esp32.com/viewtopic.php?t=19128) |
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.
LGTM
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.
LGTM, thanks!
Did we? It's available on |
Oh it is .... somehow missed that from the diff 👍 |
- Features `phy-enable-usb` & `dump-packets` have been turned into configuration options `phy_enable_usb` & `dump_packets` (#2446) | ||
- Features `ps-min-modem` & `ps-max-modem` have been removed in favour of a runtime config (#2446) |
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.
I'd love to see these in the migration guide
Thank you for your contribution!
We appreciate the time and effort you've put into this pull request.
To help us review it efficiently, please ensure you've gone through the following checklist:
Submission Checklist 📝
cargo xtask fmt-packages
command to ensure that all changed code is formatted correctly.CHANGELOG.md
in the proper section.Extra:
Pull Request Details 📖
Removes or moves features to configuration options where possible. The majority of the remaining features are associated with the wifi stack, which will be addressed in #stack
Closes #2305