-
Notifications
You must be signed in to change notification settings - Fork 253
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
Update to 1.85 toolchain #3146
Update to 1.85 toolchain #3146
Conversation
bf7ceee
to
b6cf2db
Compare
@@ -274,7 +274,7 @@ pub(crate) mod utils { | |||
const PSRAM_EID_SIZE_M: u32 = 0x07; | |||
const PSRAM_EID_SIZE_S: u32 = 5; | |||
|
|||
let size_id = (((dev_id) >> PSRAM_ID_EID_S) & PSRAM_ID_EID_M) >> PSRAM_EID_SIZE_S | |||
let size_id = ((((dev_id) >> PSRAM_ID_EID_S) & PSRAM_ID_EID_M) >> PSRAM_EID_SIZE_S) |
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.
eww
Yikes, we're missing a lot of bits from the PACs... |
Marking as ready for review, we'll want these clippy changes in, and we'll also want to be testing the 1.85 compiler a bit so we can convert to latest at some point.
Yeah a lot of the PSRAM (and a lot of the soc module in general) is missing from the PACs :( |
b6cf2db
to
c04dea2
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!
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 📖
Description
Please provide a clear and concise description of your changes, including the motivation behind these changes. The context is crucial for the reviewers.
Testing
Describe how you tested your changes.